diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..bb50084 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,37 @@ +kind: pipeline +type: kubernetes +name: default + +steps: +- name: build + image: gradle:jdk8 + commands: + - ./gradlew build + +- name: stage + image: gradle:jdk8 + commands: + - echo "signing.keyId=$${sonatype_gpg_keyid}" > gradle.properties + - echo "signing.password=$${sonatype_gpg_password}" >> gradle.properties + - echo "signing.secretKeyRingFile=${HOME}/.gradle/secring.gpg" >> gradle.properties + - echo "sonatypeUsername=$${sonatype_username}" >> gradle.properties + - echo "sonatypePassword=$${sonatype_password}" >> gradle.properties + - echo ${sonatype_gpg_key} | base64 -d > ~/.gradle/secring.gpg + - ./gradlew publishToSonatype + +- name: deploy + image: gradle:jdk8 + when: + event: + - promote + target: + - production + commands: + - echo "signing.keyId=$${sonatype_gpg_keyid}" > gradle.properties + - echo "signing.password=$${sonatype_gpg_password}" >> gradle.properties + - echo "signing.secretKeyRingFile=${HOME}/.gradle/secring.gpg" >> gradle.properties + - echo "sonatypeUsername=$${sonatype_username}" >> gradle.properties + - echo "sonatypePassword=$${sonatype_password}" >> gradle.properties + + - ./gradlew closeAndReleaseStagingRepository + diff --git a/.gitignore b/.gitignore index db074b5..6df552f 100644 --- a/.gitignore +++ b/.gitignore @@ -54,3 +54,5 @@ gradle-app.setting # Ignore Gradle Peoperties gradle.properties + +indico_api_token.txt \ No newline at end of file diff --git a/README.md b/README.md index 1cfc717..5f4db29 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ com.indico indico-client-java - 4.0.2 + 4.0.6 ``` @@ -44,7 +44,7 @@ IndicoConfig config = new IndicoConfig.Builder() .build(); ``` You configure the IndicoConfig class via an embedded Builder that has methods to set the various config parameters such as -host, tokenPath, etc. +host, tokenPath, connection timeout, etc. ### API Client diff --git a/build.gradle b/build.gradle index d218c2b..cf354db 100644 --- a/build.gradle +++ b/build.gradle @@ -1,109 +1,153 @@ -buildscript { - repositories { - jcenter() - } - dependencies { - classpath("com.apollographql.apollo:apollo-gradle-plugin:1.2.2") - } -} +import com.expediagroup.graphql.plugin.gradle.config.GraphQLScalar +import com.expediagroup.graphql.plugin.gradle.config.GraphQLSerializer plugins { - id 'java-library' - id 'maven' - id 'signing' - id 'eclipse' - id 'idea' + id "java" + id 'org.jetbrains.kotlin.jvm' version '1.5.31' + id "signing" + id "maven-publish" + id "io.github.gradle-nexus.publish-plugin" version "1.0.0" + id 'com.expediagroup.graphql' version '5.2.0' + } -apply plugin: 'com.apollographql.android' +group 'com.indico' repositories { - jcenter() + mavenCentral() } -task javadocJar(type: Jar) { - classifier = 'javadoc' - from javadoc +archivesBaseName = "indico-client-java" +version = "4.12.0" + + +task sourceJar(type: Jar) { + classifier "sources" + from sourceSets.main.allJava } -task sourcesJar(type: Jar) { - classifier = 'sources' - from sourceSets.main.allSource +task javadocJar(type: Jar, dependsOn: javadoc) { + classifier "javadoc" + from javadoc.destinationDir } -artifacts { - archives javadocJar, sourcesJar +publishing { + publications { + maven(MavenPublication) { + from(components.java) + } + } } -signing { - sign configurations.archives + +dependencies { + implementation "org.jetbrains.kotlin:kotlin-stdlib:1.5.31" + implementation "org.jetbrains.kotlin:kotlin-reflect:1.5.31" + testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0' + testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0' + implementation("io.ktor:ktor-client-okhttp:1.6.1") + testImplementation('org.junit.jupiter:junit-jupiter:5.5.2') + implementation("com.expediagroup:graphql-kotlin-ktor-client:5.2.0") + implementation("com.expediagroup:graphql-kotlin-client-jackson:5.2.0") + implementation("com.squareup.okhttp3:okhttp:4.9.0") + implementation('org.apache.logging.log4j:log4j-1.2-api:2.14.1') + api('org.json:json:20190722') + compileOnly("org.jetbrains:annotations:13.0") + testCompileOnly("org.jetbrains:annotations:13.0") } -group = "com.indico" -archivesBaseName = "indico-client-java" -version = "4.11.3" -uploadArchives { - repositories { - mavenDeployer { - beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) } +//use with update-schema.sh to refresh graphql schema +graphqlIntrospectSchema { + outputFile = file("${project.projectDir}/src/main/graphql/schema.graphql") + endpoint = "https://app.indico.io/graph/api/graphql" + headers = ["Authorization" : "Bearer " + project.getProperties().getOrDefault('graphQlToken', "")] +} - repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") { - authentication(userName: ossrhUsername, password: ossrhPassword) - } +graphqlGenerateClient { + // Boolean flag indicating whether or not selection of deprecated fields is allowed. + allowDeprecatedFields = true + packageName = "com.indico.graphql" + schemaFile = file("${project.projectDir}/src/main/resources/schema.graphql") + serializer = GraphQLSerializer.JACKSON + useOptionalInputWrapper = true - snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") { - authentication(userName: ossrhUsername, password: ossrhPassword) - } +} - pom.project { - name 'Indico IPA Client' - packaging 'jar' - description 'Java client to the Indico IPA platform' - url 'http://indico.com' - scm { - connection 'scm:github.com:IndicoDataSolutions/indico-client-java.git' - developerConnection 'scm:github.com:IndicoDataSolutions/indico-client-java.git' - url 'https://github.com/IndicoDataSolutions/indico-client-java' - } - licenses { - license { - name 'MIT' - url 'https://github.com/IndicoDataSolutions/indico-client-java/blob/master/LICENSE' - } +compileKotlin { + kotlinOptions.jvmTarget = "1.8" +} + + +// ossrh requires javadoc and sources https://central.sonatype.org/pages/requirements.html +java { + withJavadocJar() + withSourcesJar() +} + + +void sign(Project project) { + project.signing { + required { project.gradle.taskGraph.hasTask("publish") } + def signingKeyId = project.findProperty("signingKeyId") + def signingKey = project.findProperty("signingKey") + def signingPassword = project.findProperty("signingPassword") + if (signingKeyId) { + useInMemoryPgpKeys(signingKeyId, signingKey, signingPassword) + } else if (signingKey) { + useInMemoryPgpKeys(signingKey, signingPassword) + } + sign publishing.publications.maven + } +} + +project.plugins.withType(MavenPublishPlugin).all { + PublishingExtension publishing = project.extensions.getByType(PublishingExtension) + publishing.publications.withType(MavenPublication).all { mavenPublication -> + mavenPublication.pom { + name = "${project.group}:${project.name}" + description = name + url = "https://github.com/indico/indico-client-java" + licenses { + license { + name = "MIT" + url = "https://github.com/IndicoDataSolutions/indico-client-java/blob/master/LICENSE" } - developers { - developer { - id 'Indico' - name 'Indico Engineering' - email 'contact@indico.io' - } + } + developers { + developer { + id = "indico" + name = "Indico Engineering" + email = "contact@indico.io" } } + scm { + connection = "scm:git:https://github.com/indico/indico-client-java.git" + developerConnection = "scm:git:ssh://github.com/indico/indico-client-java.git" + url = "https://github.com/indico/indico-client-java" + } + sign(project) } } } -gradle.projectsEvaluated { - tasks.withType(JavaCompile) { - options.compilerArgs << "-Xlint:unchecked" +nexusPublishing { + repositories { + sonatype() } + connectTimeout = Duration.ofMinutes(3) + clientTimeout = Duration.ofMinutes(3) } -dependencies { - testImplementation('org.junit.jupiter:junit-jupiter:5.5.2') - testImplementation('org.mock-server:mockserver-netty:5.8.0') - implementation('com.apollographql.apollo:apollo-runtime:1.2.2') - implementation('org.apache.logging.log4j:log4j-1.2-api:2.14.1') - api('org.json:json:20190722') - compileOnly("org.jetbrains:annotations:13.0") - testCompileOnly("org.jetbrains:annotations:13.0") -} -apollo { - outputPackageName = "com.indico" -} +publishing { -test { - useJUnitPlatform() + repositories { + maven { + name = "local" + def releasesRepoUrl = "$buildDir/repos/releases" + def snapshotsRepoUrl = "$buildDir/repos/snapshots" + url = version.endsWith("SNAPSHOT") ? snapshotsRepoUrl : releasesRepoUrl + } + } } diff --git a/examples/GetTrainingModelProgress.java b/examples/GetTrainingModelProgress.java index da149f2..037e9fa 100644 --- a/examples/GetTrainingModelProgress.java +++ b/examples/GetTrainingModelProgress.java @@ -1,7 +1,11 @@ +package examples; + import com.indico.IndicoClient; import com.indico.IndicoConfig; +import com.indico.IndicoKtorClient; import com.indico.entity.Model; import com.indico.entity.ModelGroup; +import com.indico.exceptions.IndicoBaseException; import com.indico.query.ModelGroupQuery; import com.indico.query.TrainingModelWithProgressQuery; import java.io.IOException; @@ -14,16 +18,18 @@ public static void main(String args[]) throws IOException { .tokenPath("__TOKEN_PATH__") .build(); - try (IndicoClient client = new IndicoClient(config)) { + int modelGroupId = 1; + + try (IndicoClient client = new IndicoKtorClient(config)) { ModelGroupQuery modelGroupQuery = client.modelGroupQuery(); TrainingModelWithProgressQuery trainingModelWithProgress = client.trainingModelWithProgressQuery(); - ModelGroup modelGroup = modelGroupQuery.id(__MODEL_GROUP_ID__).query(); - Model model = trainingModelWithProgress.id(__MODEL_GROUP_ID__).query(); + ModelGroup modelGroup = modelGroupQuery.id(modelGroupId).query(); + Model model = trainingModelWithProgress.id(modelGroupId).query(); System.out.println(modelGroup.name); System.out.println("training status : " + model.status); System.out.println("percent complete : " + model.trainingProgress.percentComplete); - } catch (Exception e) { + } catch (IndicoBaseException e) { e.printStackTrace(); } } diff --git a/examples/GraphQL.java b/examples/GraphQL.java deleted file mode 100644 index 45b86e3..0000000 --- a/examples/GraphQL.java +++ /dev/null @@ -1,37 +0,0 @@ -import com.indico.IndicoClient; -import com.indico.IndicoConfig; -import com.indico.request.GraphQLRequest; -import org.json.JSONObject; -import java.io.IOException; - -public class GraphQL { - - public static void main(String args[]) throws IOException { - IndicoConfig config = new IndicoConfig.Builder() - .host("dev.indico.io") - .tokenPath("__TOKEN_PATH__") - .build(); - - try (IndicoClient client = new IndicoClient(config)) { - GraphQLRequest request = indico.graphQLRequest(); - String query - = "query GetDatasets {\n" - + " datasets {\n" - + " id\n" - + " name\n" - + " status\n" - + " rowCount\n" - + " numModelGroups\n" - + " modelGroups {\n" - + " id\n" - + " }\n" - + " }\n" - + "}"; - - JSONObject response = request.query(query).call(); - System.out.println(response.toString()); - } catch (Exception e) { - e.printStackTrace(); - } - } -} diff --git a/examples/SQSExample.java b/examples/SQSExample.java index b1a8e2b..ed1cef0 100644 --- a/examples/SQSExample.java +++ b/examples/SQSExample.java @@ -1,6 +1,8 @@ +package examples; import com.indico.IndicoClient; import com.indico.IndicoConfig; +import com.indico.IndicoKtorClient; import org.json.JSONObject; import software.amazon.awssdk.regions.Region; import software.amazon.awssdk.services.sqs.SqsClient; @@ -39,7 +41,7 @@ public static void main(String[] args) throws InterruptedException, IOException .connectTimeout(0) .build(); - IndicoClient indicoClient = new IndicoClient(config); + IndicoClient indicoClient = new IndicoKtorClient(config); //submit item(s) for processing submit_workflow(indicoClient); @@ -59,7 +61,7 @@ public static void main(String[] args) throws InterruptedException, IOException //fetch receipt handle and body String rh = m.receiptHandle(); //handle the fact that certain SQS queues - //may escpae JSON even with raw value setting + //may escape JSON even with raw value setting if(m.body().startsWith("\"")) { StringBuilder sb = new StringBuilder(m.body()); sb.deleteCharAt(0); diff --git a/examples/SingleDocExtraction.java b/examples/SingleDocExtraction.java index a60e97e..146fdd1 100644 --- a/examples/SingleDocExtraction.java +++ b/examples/SingleDocExtraction.java @@ -1,6 +1,11 @@ +package examples; + +import com.indico.IndicoClient; import com.indico.IndicoConfig; -import com.indico.jobs.Job; +import com.indico.IndicoKtorClient; +import com.indico.exceptions.IndicoBaseException; import com.indico.mutation.DocumentExtraction; +import com.indico.query.Job; import com.indico.storage.Blob; import com.indico.storage.RetrieveBlob; import com.indico.type.JobStatus; @@ -17,16 +22,19 @@ public static void main(String args[]) throws IOException { .tokenPath("__TOKEN_PATH__") .build(); - try (IndicoClient client = new IndicoClient(config)) { + try (IndicoClient client = new IndicoKtorClient(config)) { DocumentExtraction extraction = client.documentExtraction(); ArrayList files = new ArrayList<>(); files.add("__PDF_PATH__"); JSONObject json = new JSONObject(); json.put("preset_config", "simple"); - List jobs = extraction.files(files).jsonConfig(json).execute(); + extraction.files(files).jsonConfig(json); + List jobs = extraction.execute(); Job job = jobs.get(0); while (job.status() == JobStatus.PENDING) { Thread.sleep(1000); + jobs = extraction.execute(); + job = jobs.get(0); } JSONObject obj = job.result(); String url = obj.getString("url"); @@ -35,7 +43,7 @@ public static void main(String args[]) throws IOException { //call close on blob to dispose when done with object. blob.close(); System.out.println(blob.asString()); - } catch (Exception e) { + } catch (IndicoBaseException | InterruptedException e) { e.printStackTrace(); } } diff --git a/examples/Submission.java b/examples/SubmissionExample.java similarity index 79% rename from examples/Submission.java rename to examples/SubmissionExample.java index 5ea8425..ccb51df 100644 --- a/examples/Submission.java +++ b/examples/SubmissionExample.java @@ -1,7 +1,11 @@ +package com.indico; + import com.indico.IndicoClient; import com.indico.IndicoConfig; -import com.indico.jobs.Job; +import com.indico.IndicoKtorClient; +import com.indico.exceptions.IndicoBaseException; import com.indico.mutation.WorkflowSubmission; +import com.indico.query.Job; import com.indico.storage.Blob; import com.indico.storage.RetrieveBlob; import com.indico.type.JobStatus; @@ -26,7 +30,8 @@ public static void main(String args[]) throws IOException { int workflowId = 5; - try (IndicoClient client = new IndicoClient(config)) { + try (IndicoClient client = new IndicoKtorClient(config)) { + /* * Create a new submission using one of two methods, file path or bytestream. * Generate a submission result as soon as the submission is done processing @@ -40,11 +45,18 @@ public static void main(String args[]) throws IOException { files.add("./path_to_file.pdf"); List submissionIds = workflowSubmission.files(files).workflowId(workflowId).execute(); int submissionId = submissionIds.get(0); + + /** + * This call unifies the results from review with the submission result + * and generates the final file. + */ Job job = client.submissionResult().submission(submissionId).execute(); + /** + * each call to .status() executes a query. + */ while (job.status() == JobStatus.PENDING) { Thread.sleep(1000); - job = client.submissionResult().submission(submissionId).execute(); System.out.println("Job Status: " + job.status()); } @@ -52,7 +64,10 @@ public static void main(String args[]) throws IOException { String url = obj.getString("url"); RetrieveBlob retrieveBlob = client.retrieveBlob(); Blob blob = retrieveBlob.url(url).execute(); - //call close on blob to dispose when done with object. + /** + * It is important to close blob storage objects to release the + * connections that may remain from reading the blob. + */ blob.close(); System.out.println(blob.asString()); client.updateSubmission().submissionId(submissionId).retrieved(true).execute(); @@ -65,11 +80,13 @@ public static void main(String args[]) throws IOException { maps.put(fileName,bytes); submissionIds = byteWorkflowSubmission.byteStreams(maps).workflowId(workflowId).execute(); int streamSubmissionId = submissionIds.get(0); + /** + * Essentially identical to the first method. + */ Job streamJob = client.submissionResult().submission(streamSubmissionId).execute(); while (streamJob.status() == JobStatus.PENDING) { Thread.sleep(1000); - streamJob = client.submissionResult().submission(submissionId).execute(); System.out.println("Job Status: " + streamJob.status()); } @@ -79,9 +96,9 @@ public static void main(String args[]) throws IOException { * Delay gathering the results until required */ List filters = new ArrayList<>(); - filters.add(SubmissionFilter.builder().status(SubmissionStatus.COMPLETE).build()); - filters.add(SubmissionFilter.builder().status(SubmissionStatus.FAILED).build()); - SubmissionFilter subFilter = SubmissionFilter.builder().oR(filters).build(); + filters.add(new SubmissionFilter.Builder().status(SubmissionStatus.COMPLETE).build()); + filters.add(new SubmissionFilter.Builder().status(SubmissionStatus.FAILED).build()); + SubmissionFilter subFilter = new SubmissionFilter.Builder().ors(filters).build(); List submissions = client.listSubmissions().filters(subFilter).query(); Hashtable resultFiles = new Hashtable<>(); @@ -105,7 +122,7 @@ public static void main(String args[]) throws IOException { blob = retrieveBlob.url(url).execute(); System.out.println("Submission " + s.id + " has result " + blob.asString()); } - } catch (Exception e) { + } catch (IndicoBaseException | InterruptedException e) { e.printStackTrace(); } } diff --git a/examples/Workflow.java b/examples/Workflow.java deleted file mode 100644 index cd383f1..0000000 --- a/examples/Workflow.java +++ /dev/null @@ -1,58 +0,0 @@ -import com.indico.IndicoClient; -import com.indico.IndicoConfig; -import com.indico.entity.Workflow; -import com.indico.jobs.Job; -import com.indico.mutation.WorkflowJob; -import com.indico.storage.Blob; -import com.indico.storage.RetrieveBlob; -import com.indico.type.JobStatus; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import org.json.JSONObject; - -/*** - * Used for one-off jobs. Most use cases want to follow the pattern in Submission.java instead. - */ -public class Workflow { - - public static void main(String args[]) throws IOException { - IndicoConfig config = new IndicoConfig.Builder() - .host("app.indico.io") - .tokenPath("__TOKEN_PATH__") - .build(); - - // Use your dataset's id to call it's associated workflow - int datasetId = 6826; - - try (IndicoClient client = new IndicoClient(config)) { - List datasetIds = new ArrayList<>(); - datasetIds.add(datasetId); - - // Return a list of workflows for this dataset id or an empty list if there are none - List workflows = client.listWorkflows().datasetIds(datasetIds).query(); - if(workflows.size() > 0) { - WorkflowJob workflowJob = client.workflowJob(); - ArrayList files = new ArrayList<>(); - files.add("./path_to_file.pdf"); - int workflowId = workflows.get(0).id; - List jobs = workflowJob.files(files).workflowId(workflowId).execute(); - Job job = jobs.get(0); - - while (job.status() == JobStatus.PENDING) { - Thread.sleep(1000); - } - - JSONObject obj = job.result(); - String url = obj.getString("url"); - RetrieveBlob retrieveBlob = client.retrieveBlob(); - Blob blob = retrieveBlob.url(url).execute(); - //call close on blob to dispose when done with object. - blob.close(); - System.out.println(blob.asString()); - } - } catch (Exception e) { - e.printStackTrace(); - } - } -} diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index cc4fdc2..7454180 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 9492014..69a9715 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew index 2fe81a7..744e882 100755 --- a/gradlew +++ b/gradlew @@ -72,7 +72,7 @@ case "`uname`" in Darwin* ) darwin=true ;; - MINGW* ) + MSYS* | MINGW* ) msys=true ;; NONSTOP* ) @@ -82,6 +82,7 @@ esac CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + # Determine the Java command to use to start the JVM. if [ -n "$JAVA_HOME" ] ; then if [ -x "$JAVA_HOME/jre/sh/java" ] ; then @@ -129,6 +130,7 @@ fi if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then APP_HOME=`cygpath --path --mixed "$APP_HOME"` CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` + JAVACMD=`cygpath --unix "$JAVACMD"` # We build the pattern for arguments to be converted via cygpath diff --git a/gradlew.bat b/gradlew.bat index 24467a1..ac1b06f 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -29,6 +29,9 @@ if "%DIRNAME%" == "" set DIRNAME=. set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME% +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" @@ -37,7 +40,7 @@ if defined JAVA_HOME goto findJavaFromJavaHome set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto init +if "%ERRORLEVEL%" == "0" goto execute echo. echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. @@ -51,7 +54,7 @@ goto fail set JAVA_HOME=%JAVA_HOME:"=% set JAVA_EXE=%JAVA_HOME%/bin/java.exe -if exist "%JAVA_EXE%" goto init +if exist "%JAVA_EXE%" goto execute echo. echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% @@ -61,28 +64,14 @@ echo location of your Java installation. goto fail -:init -@rem Get command-line arguments, handling Windows variants - -if not "%OS%" == "Windows_NT" goto win9xME_args - -:win9xME_args -@rem Slurp the command line arguments. -set CMD_LINE_ARGS= -set _SKIP=2 - -:win9xME_args_slurp -if "x%~1" == "x" goto execute - -set CMD_LINE_ARGS=%* - :execute @rem Setup the command line set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + @rem Execute Gradle -"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* :end @rem End local scope for the variables with windows NT shell diff --git a/settings.gradle b/settings.gradle index 5511981..010aa4c 100644 --- a/settings.gradle +++ b/settings.gradle @@ -7,4 +7,4 @@ * in the user manual at https://docs.gradle.org/6.0.1/userguide/multi_project_builds.html */ -rootProject.name = 'indico-client' +rootProject.name = 'indico-client-java' diff --git a/src/main/graphql/schema.json b/src/main/graphql/schema.json deleted file mode 100644 index 52ce4c9..0000000 --- a/src/main/graphql/schema.json +++ /dev/null @@ -1,21728 +0,0 @@ -{ - "__schema": { - "description": null, - "queryType": { - "name": "SuperSchema" - }, - "mutationType": { - "name": "SuperMutation" - }, - "subscriptionType": { - "name": "Subscription" - }, - "types": [ - { - "kind": "OBJECT", - "name": "SuperSchema", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "allUsers", - "description": null, - "args": [ - { - "name": "includeScopes", - "description": "Include scopes for each user", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": "number of pages to skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Find results before this cursor", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "after", - "description": "Find results after this cursor", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "Max number of results to return", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "desc", - "description": "Return results in descending order", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "attribute to order results by", - "type": { - "kind": "ENUM", - "name": "USER_COLUMN_ENUM", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filters", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "UserPage", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oneUser", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userSummary", - "description": null, - "args": [ - { - "name": "date", - "description": "User summary at this date (23:59 UTC)", - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "UserSummary", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userSnapshot", - "description": null, - "args": [ - { - "name": "date", - "description": "Snapshot of permissions at this date (23:59 UTC)", - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": "number of pages to skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Find results before this cursor", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "after", - "description": "Find results after this cursor", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "Max number of results to return", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "desc", - "description": "Return results in descending order", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "attribute to order results by", - "type": { - "kind": "ENUM", - "name": "USERSNAPSHOT_COLUMN_ENUM", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filters", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserReportFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "UserSnapshotPage", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userChangelog", - "description": null, - "args": [ - { - "name": "startDate", - "description": "Get changes on or after this daye (00:00 UTC)", - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "endDate", - "description": "Get changes on or before this day (23:59 UCT)", - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": "number of pages to skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Find results before this cursor", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "after", - "description": "Find results after this cursor", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "Max number of results to return", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "desc", - "description": "Return results in descending order", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "attribute to order results by", - "type": { - "kind": "ENUM", - "name": "USERCHANGELOG_COLUMN_ENUM", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filters", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserReportFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "UserChangelogPage", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workflows", - "description": null, - "args": [ - { - "name": "datasetIds", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workflowIds", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "role", - "description": null, - "type": { - "kind": "ENUM", - "name": "Roles", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "metricsStartDate", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": "number of pages to skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Find results before this cursor", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "after", - "description": "Find results after this cursor", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "Max number of results to return", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "desc", - "description": "Return results in descending order", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "attribute to order results by", - "type": { - "kind": "ENUM", - "name": "WORKFLOW_COLUMN_ENUM", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filters", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorkflowFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "WorkflowPage", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submission", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Submission", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "checkoutSpecificSubmission", - "description": null, - "args": [ - { - "name": "submissionId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Submission", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "randomSubmission", - "description": null, - "args": [ - { - "name": "workflowId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "adminReview", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Submission", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submissions", - "description": null, - "args": [ - { - "name": "submissionIds", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workflowIds", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": "number of pages to skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Find results before this cursor", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "after", - "description": "Find results after this cursor", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "Max number of results to return", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "desc", - "description": "Return results in descending order", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "attribute to order results by", - "type": { - "kind": "ENUM", - "name": "SUBMISSION_COLUMN_ENUM", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filters", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SubmissionFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SubmissionPage", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "refresh", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Refresh", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "questionnaires", - "description": null, - "args": [ - { - "name": "datasetIds", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "questionnaireIds", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": "number of pages to skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Find results before this cursor", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "after", - "description": "Find results after this cursor", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "Max number of results to return", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "desc", - "description": "Return results in descending order", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "attribute to order results by", - "type": { - "kind": "ENUM", - "name": "QUESTIONNAIRE_COLUMN_ENUM", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filters", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "QuestionnaireFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "QuestionnairePage", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelGroups", - "description": null, - "args": [ - { - "name": "datasetIds", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelGroupIds", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": "number of pages to skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Find results before this cursor", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "after", - "description": "Find results after this cursor", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "Max number of results to return", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "desc", - "description": "Return results in descending order", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "attribute to order results by", - "type": { - "kind": "ENUM", - "name": "MODELGROUP_COLUMN_ENUM", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filters", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ModelGroupFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ModelGroupPage", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelGroup", - "description": null, - "args": [ - { - "name": "modelGroupId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ModelGroup", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelSimilarity", - "description": null, - "args": [ - { - "name": "modelGroupId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "query", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ModelSimilarity", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "job", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Job", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fireGroups", - "description": null, - "args": [ - { - "name": "datasetIds", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fireGroupIds", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": "number of pages to skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Find results before this cursor", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "after", - "description": "Find results after this cursor", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "Max number of results to return", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "desc", - "description": "Return results in descending order", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "attribute to order results by", - "type": { - "kind": "ENUM", - "name": "FIREGROUP_COLUMN_ENUM", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filters", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FireGroupFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "FireGroupPage", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fireSimilarity", - "description": null, - "args": [ - { - "name": "fireGroupId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fireId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "query", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FireSimilarity", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exports", - "description": null, - "args": [ - { - "name": "datasetId", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exportIds", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "columnIds", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subsetIds", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelsetIds", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": "number of pages to skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Find results before this cursor", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "after", - "description": "Find results after this cursor", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "Max number of results to return", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "desc", - "description": "Return results in descending order", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "attribute to order results by", - "type": { - "kind": "ENUM", - "name": "EXPORT_COLUMN_ENUM", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ExportPage", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datafile", - "description": null, - "args": [ - { - "name": "datafileId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DataFile", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datafiles", - "description": null, - "args": [ - { - "name": "datafileIds", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DataFile", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataset", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Dataset", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasets", - "description": null, - "args": [ - { - "name": "permissions", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PermissionType", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Dataset", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasetsPage", - "description": null, - "args": [ - { - "name": "permissions", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PermissionType", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "showAll", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": "number of pages to skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Find results before this cursor", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "after", - "description": "Find results after this cursor", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "Max number of results to return", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "desc", - "description": "Return results in descending order", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "attribute to order results by", - "type": { - "kind": "ENUM", - "name": "DATASET_COLUMN_ENUM", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filters", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "DatasetFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DatasetPage", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "searchDatapoint", - "description": null, - "args": [ - { - "name": "datapointId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keyword", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "context", - "description": "Max result length including keyword and surrounding text", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ignoreCase", - "description": "Use case-insensitive search", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DataPointSearchResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ipaVersion", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UserPage", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "users", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "User", - "description": "Basic user object", - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "active", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "acceptedTerms", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "apiRefreshToken", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "RefreshTokenMeta", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "confirmedAt", - "description": "Epoch time of confirmation of user registration", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "confirmedDate", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastUpdate", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastUpdateDate", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "registeredAt", - "description": "Epoch time of user registration", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "registeredDate", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sStreet", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sStreet2", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sCity", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sState", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sCountry", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sZip", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "scopes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ScopeAccess", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "preferences", - "description": null, - "args": [ - { - "name": "app", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keys", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Preference", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "logins", - "description": null, - "args": [ - { - "name": "skip", - "description": "number of pages to skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Find results before this cursor", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "after", - "description": "Find results after this cursor", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "Max number of results to return", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "desc", - "description": "Return results in descending order", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "attribute to order results by", - "type": { - "kind": "ENUM", - "name": "LOGIN_COLUMN_ENUM", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "LoginPage", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "accountLockedAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "numManagedDatasets", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Int", - "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Boolean", - "description": "The `Boolean` scalar type represents `true` or `false`.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RefreshTokenMeta", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isApiToken", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isValid", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "DateTime", - "description": "The `DateTime` scalar type represents a DateTime\nvalue as specified by\n[iso8601](https://en.wikipedia.org/wiki/ISO_8601).", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "String", - "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ScopeAccess", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "scope", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "Scope", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "Scope", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "CELERY_FLOWER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MANAGE_USERS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GRAPHIQL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "APP_ACCESS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MANAGE_DATASET", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MANAGE_ALL_DATA", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BASE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "REFRESH_TOKEN", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CHANGE_PASSWORD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CONFIRM_ACCOUNT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "USER_INFORMATION", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "METRICS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Preference", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "app", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "JSONString", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "JSONString", - "description": "Allows use of a JSON String for input / output from the GraphQL schema.\n\nUse of this type is *not recommended* as you lose the benefits of having a defined, static\nschema (one of the key benefits of GraphQL).", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LoginPage", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "logins", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Login", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Login", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "loggedInAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTimeISO", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "loginIp", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "DateTimeISO", - "description": "ISO-8601 datetime format for JS to parse timezone\n\nFor example: 2020-03-20T01:31:12.467113+00:00\n\nThis custom scalar should only be used for serializing data out, not as an\ninput field, so parse_literal and parse_value are not implemented.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PageInfo", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "startCursor", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "endCursor", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNextPage", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregateCount", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "LOGIN_COLUMN_ENUM", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LOGIN_IP", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "USER_COLUMN_ENUM", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACTIVE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCEPTED_TERMS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CONFIRMED_AT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CONFIRMED_DATE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EMAIL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LAST_UPDATE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LAST_UPDATE_DATE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NAME", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "REGISTERED_AT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "REGISTERED_DATE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "S_STREET", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "S_STREET2", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "S_CITY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "S_STATE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "S_COUNTRY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "S_ZIP", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNT_LOCKED_AT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NUM_MANAGED_DATASETS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserFilter", - "description": null, - "specifiedByUrl": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": "name contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email", - "description": "email contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ors", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ands", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UserSummary", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "users", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "EnabledCount", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "appRoles", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AppRoleCount", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EnabledCount", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "enabled", - "description": "Number of active users", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "disabled", - "description": "Number of deactivated users", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AppRoleCount", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "role", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "AppRole", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AppRole", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "APP_ADMIN", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TEAM_ADMIN", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TEAM_DEVELOPER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TEAM_USER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CELERY_FLOWER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MANAGE_ALL_DATA", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Date", - "description": "The `Date` scalar type represents a Date\nvalue as specified by\n[iso8601](https://en.wikipedia.org/wiki/ISO_8601).", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UserSnapshotPage", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UserSnapshot", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UserSnapshot", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "enabled", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "roles", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AppRole", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasets", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DatasetRole", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DatasetRole", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "datasetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "role", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "Roles", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "Roles", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "LABELER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "REVIEWER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LABELER_AND_REVIEWER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ANALYST", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MANAGER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "USERSNAPSHOT_COLUMN_ENUM", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NAME", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EMAIL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATED_AT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENABLED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserReportFilter", - "description": null, - "specifiedByUrl": null, - "fields": null, - "inputFields": [ - { - "name": "userId", - "description": "User id in this list", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userEmail", - "description": "User email in this list", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserReportFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserReportFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ors", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserReportFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ands", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserReportFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UserChangelogPage", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UserChangelog", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UserChangelog", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": "Unique combination of date and user_id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userEmail", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedBy", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updaterEmail", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previouslyEnabled", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "enabled", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousRoles", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AppRole", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "roles", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AppRole", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousDatasets", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DatasetRole", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasets", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DatasetRole", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "changesMade", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "UserChangeType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "UserChangeType", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "APP_ROLE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DATASET_ROLE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENABLEMENT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "USERCHANGELOG_COLUMN_ENUM", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DATE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "USER_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "USER_EMAIL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UPDATED_BY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UPDATER_EMAIL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PREVIOUSLY_ENABLED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENABLED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkflowPage", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "workflows", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Workflow", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Workflow", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataset", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Dataset", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedBy", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "docbots", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DocBot", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userRole", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "Roles", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "WorkflowStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewable", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewEnabled", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "autoReviewEnabled", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "estHumanTimeMins", - "description": "Estimated human time to complete the workflow in minutes", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submissionCounts", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "SubmissionCounts", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewableModelGroups", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ModelGroup", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submissionFacts", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "SubmissionFacts", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "metrics", - "description": null, - "args": [ - { - "name": "startDate", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "endDate", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "WorkflowMetrics", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Dataset", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "DatasetStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rowCount", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "defaultSubsetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "DatasetType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errorInfo", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedBy", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datacolumns", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DataColumn", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelsets", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LabelSet", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "permissions", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exports", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Export", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelGroups", - "description": null, - "args": [ - { - "name": "taskTypes", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TaskType", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ModelGroup", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelGroup", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ModelGroup", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "files", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DataFile", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "numFireGroups", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "numModelGroups", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "numQuestionnaires", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataInfo", - "description": null, - "args": [ - { - "name": "labelsetId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sourceColumnId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DataInfo", - "ofType": null - }, - "isDeprecated": true, - "deprecationReason": "Fetch class balance info under ModelGroup" - }, - { - "name": "users", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DatasetUser", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "DatasetStatus", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "STAGED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROCESSED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UPLOADING", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATING", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FAILED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "COMPLETE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DELETING", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "DatasetType", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "IMAGE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TEXT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DOCUMENT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DataColumn", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "columnIndex", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datatype", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "DataTypes", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ocrUsed", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "DataTypes", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "CATEGORICAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "STRING", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NUMERIC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IMAGE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNKNOWN", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LabelSet", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "numLabelersRequired", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "numLabelsetPoints", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "numFullyLabeled", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "taskType", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "TaskType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetNames", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TargetName", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TaskType", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "CLASSIFICATION", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CLASSIFICATION_MULTIPLE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "RATIONALIZED_CLASSIFICATION", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "REGRESSION", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ANNOTATION", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OBJECT_DETECTION", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FORM_EXTRACTION", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TargetName", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelsetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "position", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Export", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "ExportStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "columnIds", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelsetIds", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subsetIds", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "numLabels", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "anonymous", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "downloadUrl", - "description": "Download URL of this export", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "Unix timestamp", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": "user id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ExportStatus", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "STARTED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FAILED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "COMPLETE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ModelGroup", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "ModelStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "models", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Model", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "model", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Model", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "selectedModel", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Model", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "taskType", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "TaskType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataType", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "DataTypes", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "retrainRequired", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelset", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "LabelSet", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sourceColumn", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "DataColumn", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "interlabelerResolution", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "LabelResolutionStrategy", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "example", - "description": null, - "args": [ - { - "name": "rowIndex", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Example", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedBy", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "classNames", - "description": "Ordered list of target names used to train the model.", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "processors", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Processor", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subsetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataInfo", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "DataInfo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelsetColumnId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "questionnaireId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workflowId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ModelStatus", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "CREATING", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TRAINING", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FAILED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "COMPLETE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NOT_ENOUGH_DATA", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Model", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "collectionName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "predictionLabelsetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "classNames", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "evaluation", - "description": null, - "args": [], - "type": { - "kind": "UNION", - "name": "Evaluation", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "predictions", - "description": null, - "args": [ - { - "name": "sources", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "threshold", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "UNION", - "name": "Prediction", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelInfo", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "JSONString", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedBy", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "ModelStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "trainingSubsetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "testingSubsetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "trainingProgress", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TrainingProgress", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "linkable", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelType", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "ModelType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rareClasses", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ClassCount", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unlabeledClasses", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "UNION", - "name": "Evaluation", - "description": null, - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "ClassificationSingleEvaluation", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ClassificationMultipleEvaluation", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "AnnotationEvaluation", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ObjectDetectionEvaluation", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "RationalizedClassificationEvaluation", - "ofType": null - } - ] - }, - { - "kind": "OBJECT", - "name": "ClassificationSingleEvaluation", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "metrics", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ClassificationModelMetrics", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "confusionResult", - "description": null, - "args": [ - { - "name": "predicted", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "actual", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SingleTestResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "testResults", - "description": null, - "args": [ - { - "name": "actual", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "threshold", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CLASSIFICATIONTestResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ClassificationModelMetrics", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "metricsTable", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MetricsTable", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rocCurves", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ROCCurve", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "prCurves", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PRCurve", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "confusionMatrix", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ConfusionMatrix", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "MetricsTable", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auc", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "accuracy", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "precision", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "recall", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "f1Score", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Float", - "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ROCCurve", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "confidences", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "truePositiveRate", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "falsePositiveRate", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auc", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PRCurve", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "confidences", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "precision", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "recall", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ConfusionMatrix", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "classes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "matrix", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SingleTestResult", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "explanations", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Explanation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "text", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rowIdx", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "actual", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "predicted", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "score", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ClassConfidence", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Explanation", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "metadata", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ExplainMeta", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "similarity", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "text", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ExplainMeta", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "datasetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rowIndex", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rowId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sourceColumnId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ClassConfidence", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "confidence", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CLASSIFICATIONTestResult", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "falsePositive", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SingleTestResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "falseNegative", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SingleTestResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "truePositive", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SingleTestResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "trueNegative", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SingleTestResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resultCounts", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ResultCounts", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "threshold", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ResultCounts", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "falsePositive", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "falseNegative", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "truePositive", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "trueNegative", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ClassificationMultipleEvaluation", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "metrics", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ClassificationModelMetrics", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "confusionResult", - "description": null, - "args": [ - { - "name": "predicted", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "actual", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SingleTestResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "testResults", - "description": null, - "args": [ - { - "name": "actual", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "threshold", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CLASSIFICATION_MULTIPLETestResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CLASSIFICATION_MULTIPLETestResult", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "falsePositive", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MultiTestResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "falseNegative", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MultiTestResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "truePositive", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MultiTestResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "trueNegative", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MultiTestResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resultCounts", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ResultCounts", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "threshold", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "MultiTestResult", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "explanations", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Explanation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "text", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rowIdx", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "actual", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "predicted", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "score", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ClassConfidence", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AnnotationEvaluation", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "metrics", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "AnnotationModelMetrics", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "examples", - "description": null, - "args": [ - { - "name": "label", - "description": "filter on a specific label", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "textSearch", - "description": "filter source data on a string", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skip", - "description": "number of pages to skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Find results before this cursor", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "after", - "description": "Find results after this cursor", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": "Max number of results to return", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "desc", - "description": "Return results in descending order", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "attribute to order results by", - "type": { - "kind": "ENUM", - "name": "ANNOTATIONEXAMPLE_COLUMN_ENUM", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "includeAggregate", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "AnnotationExamplesPage", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "testResults", - "description": null, - "args": [ - { - "name": "actual", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "threshold", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ANNOTATIONTestResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AnnotationModelMetrics", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "classMetrics", - "description": "Metrics for evaluating model performance per class", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AnnotationClassMetrics", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelLevelMetrics", - "description": "Metrics for evaluating model performance at the model level, across classes", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ModelLevelMetrics", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "retrainForMetrics", - "description": "Model retraining is required in order to calculate metrics.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AnnotationClassMetrics", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "metrics", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PerClassSeqMetrics", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PerClassSeqMetrics", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "spanType", - "description": "Type of span the metric is calculated on, e.g. Token, Sequence Superset", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "precision", - "description": "Of the predicted true positives, the percentage that were actually correct", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "recall", - "description": "Of the total true positives, the percentage were recovered by the model as true positives", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "f1Score", - "description": "Harmonic mean of precision and recall", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "falsePositives", - "description": "# of examples that were predicted affirmative in the class but negative", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "falseNegatives", - "description": "# of examples that were affirmative but were not predicted as such by the model", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "truePositives", - "description": "# of examples that were predicted affirmative and were actually affirmative", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ModelLevelMetrics", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "spanType", - "description": "Type of span the metric is calculated on, e.g. Token, Sequence Superset", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "microF1", - "description": "F1 score calculated based on pooling instances across classes", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "macroF1", - "description": "F1 score calculated per-class and then averaged", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "weightedF1", - "description": "F1 score calculated per-class and then weighted averaged, weighted by instances per class", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AnnotationExamplesPage", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "annotationExamples", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AnnotationExample", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AnnotationExample", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "rowId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rowIndex", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "text", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "annotationLabels", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AnnotationLabel", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "predictions", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AnnotationPrediction", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datafile", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "DataFile", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AnnotationLabel", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "start", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "end", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AnnotationPrediction", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "start", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "end", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "text", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "confidence", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DataFile", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleted", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rainbowUrl", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "FileStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "statusMeta", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "JSONString", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fileHash", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fileSize", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fileType", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "FileType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageIds", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "numPages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [ - { - "name": "pageNums", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DataFilePage", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "failureType", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "FileFailureType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "FileStatus", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "DOWNLOADING", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DOWNLOADED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRACTING", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRACTED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROCESSED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROCESSING", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FAILED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "FileType", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "CSV", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PDF", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXCEL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DOC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DOCX", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PPT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PPTX", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PNG", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "JPG", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TIFF", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNKNOWN", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DataFilePage", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datafileId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "image", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageNum", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "thumbnail", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "docStartOffset", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "docEndOffset", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "FileFailureType", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "SERVER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DOWNLOAD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRACTION", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INCOMPATIBLE_TYPE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSUPPORTED_TYPE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CORRUPT_IMAGE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CSV_PARSING", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INCOMPATIBLE_CSV_COLUMNS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CSV_NO_URL_DS_TYPE_DOCUMENT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CSV_NO_URL_DS_TYPE_IMAGE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CSV_REQUIRES_CONTENT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CSV_MULTIPLE_URLS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ANNOTATIONEXAMPLE_COLUMN_ENUM", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ROW_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ROW_INDEX", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TEXT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ANNOTATIONTestResult", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "falsePositive", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MultiTestResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "falseNegative", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MultiTestResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "truePositive", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MultiTestResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "trueNegative", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MultiTestResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resultCounts", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ResultCounts", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "threshold", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ObjectDetectionEvaluation", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "metrics", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "JSONString", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "testResults", - "description": null, - "args": [ - { - "name": "actual", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "threshold", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "OBJECT_DETECTIONTestResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "OBJECT_DETECTIONTestResult", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "falsePositive", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MultiTestResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "falseNegative", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MultiTestResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "truePositive", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MultiTestResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "trueNegative", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MultiTestResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resultCounts", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ResultCounts", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "threshold", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RationalizedClassificationEvaluation", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "metrics", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ClassificationModelMetrics", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "confusionResult", - "description": null, - "args": [ - { - "name": "predicted", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "actual", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SingleTestResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "testResults", - "description": null, - "args": [ - { - "name": "actual", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "threshold", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "RATIONALIZED_CLASSIFICATIONTestResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RATIONALIZED_CLASSIFICATIONTestResult", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "falsePositive", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SingleTestResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "falseNegative", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SingleTestResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "truePositive", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SingleTestResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "trueNegative", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SingleTestResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resultCounts", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ResultCounts", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "threshold", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "UNION", - "name": "Prediction", - "description": null, - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "AnnotationPrediction", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ClassificationPrediction", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ClassificationMultiplePrediction", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "RationalizedClassificationPrediction", - "ofType": null - } - ] - }, - { - "kind": "OBJECT", - "name": "ClassificationPrediction", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "confidences", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ClassConfidence", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenPredictions", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TokenPrediction", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "explanations", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Explanation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TokenPrediction", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "confidences", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ClassConfidence", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "_Token", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "_Token", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "end", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "start", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "text", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ClassificationMultiplePrediction", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "labels", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "confidences", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ClassConfidence", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenPredictions", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TokenPrediction", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "explanations", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Explanation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RationalizedClassificationPrediction", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "confidences", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ClassConfidence", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenPredictions", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TokenPrediction", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "explanations", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Explanation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TrainingProgress", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "percentComplete", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ModelType", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ENSEMBLE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TFIDF", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "STANDARD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FINETUNE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OBJECT_DETECTION", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "RATIONALIZED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FORM_EXTRACTION", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DOCUMENT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ClassCount", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "target", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "LabelResolutionStrategy", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "MAJORITY_VOTE_WITH_TIES", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MAJORITY_VOTE_WITHOUT_TIES", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNANIMOUS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ALL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Example", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LabelsetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rowIndex", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datarowId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "source", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targets", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Target", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datafileId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datapointId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "predictions", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "UNION", - "name": "Prediction", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Target", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "start", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "end", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Processor", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "processorType", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProcessorType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "args", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "JSONString", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ProcessorType", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "SPLIT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CONTENT_LENGTH", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LINK_CLASSIFICATION_MODEL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OUTPUT_CSV_FORMATTER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OUTPUT_JSON_FORMATTER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_OCR_EXTRACTION", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_IMAGE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATION", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DataInfo", - "description": "Cyclone Label Breakdown Response\n\nresponse = {\n \"num_empty_examples\": len(empty_sources),\n \"num_examples\": num_examples,\n \"labelset_id\": labelset.id,\n \"target_contradictions\": percent_contradictions,\n \"source_duplicates\": percent_source_duplicate,\n \"class_balance\": target_counter,\n \"warnings\": warnings,\n}", - "specifiedByUrl": null, - "fields": [ - { - "name": "datasetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subsetIds", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "numEmptyExamples", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "numExamples", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetContradictions", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sourceDuplicates", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "classBalance", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ClassBalance", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sourceColumnId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelsetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "warnings", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ClassBalance", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "all", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ClassCount", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "majorityVoteWithTies", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ClassCount", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "majorityVoteWithoutTies", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ClassCount", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unanimous", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ClassCount", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DatasetUser", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "permissions", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "role", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "Roles", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DocBot", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedBy", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subsetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parents", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "docbotType", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "DocBotType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "processors", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Processor", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "components", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "ComponentInterface", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "DocBotType", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "QUESTIONNAIRE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FIRE_GROUP", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MODEL_GROUP", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DATASET", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ETL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OUTPUT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "ComponentInterface", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "docbotId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "componentAppId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "componentType", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "ComponentType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewable", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Component", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ModelGroupComponent", - "ofType": null - } - ] - }, - { - "kind": "ENUM", - "name": "ComponentType", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "QUESTIONNAIRE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FIRE_GROUP", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MODEL_GROUP", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DOCUMENT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "RESULT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CUSTOM_RESULT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "WorkflowStatus", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "COMPLETE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ADDING_DATA", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SubmissionCounts", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "processing", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pendingReview", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pendingAdminReview", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pendingAutoReview", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "complete", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "failed", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SubmissionFacts", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "startDate", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workflowId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "daily", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "SubmissionFactsDaily", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "SubmissionFactsTotal", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SubmissionFactsDaily", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "submitted", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DailyCount", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submittedAndCompletedInReview", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DailyCount", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "completed", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DailyCount", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "completedInReview", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DailyCount", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "completedReviewQueue", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DailyCount", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "completedExceptionQueue", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DailyCount", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rejectedInReview", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DailyCount", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "avgHoursOnQueue", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DailyAvg", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stp", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "StpFactsDaily", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "predictions", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DailyCount", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timeOnTask", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TimeOnTaskDaily", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DailyCount", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DailyAvg", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "avg", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "StpFactsDaily", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "workflow", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DailyStp", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "model", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ModelStpDailyFacts", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DailyStp", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "reviewNumerator", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "autoReviewNumerator", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewDenom", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "autoReviewDenom", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewStpPct", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "autoReviewStpPct", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ModelStpDailyFacts", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelGroupId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stps", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DailyStp", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "classStps", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ClassStpFacts", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewStpForModel", - "description": "Review STP for model aggregated by parent filter context.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "autoReviewStpForModel", - "description": "Auto Review STP for model aggregated by parent filter context.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ClassStpFacts", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "className", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stps", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DailyStp", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewStpForClass", - "description": "Review STP for class aggregated by parent filter context.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "autoReviewStpForClass", - "description": "Auto Review STP for class aggregated by parent filter context", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TimeOnTaskDaily", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "review", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DailyTimeOnTask", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exceptions", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DailyTimeOnTask", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DailyTimeOnTask", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "minutes", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "numReviews", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SubmissionFactsTotal", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "submitted", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stp", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "StpFacts", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "StpFacts", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "model", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ModelStp", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ModelStp", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "reviewNumerator", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "autoReviewNumerator", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewDenom", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "autoReviewDenom", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewStpPct", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "autoReviewStpPct", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelGroupId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkflowMetrics", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "workflowId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "startDate", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "endDate", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timeOnTask", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TimeOnTaskMetrics", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submissions", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "SubmissionMetrics", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "queues", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "QueueMetrics", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "predictions", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "PredictionMetrics", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "straightThroughProcessing", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "StpMetrics", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "firstSubmittedDate", - "description": "The first date an item was submitted to this workflow", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TimeOnTaskMetrics", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TimeOnTaskMetric", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "daily", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DailyTimeOnTaskMetric", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TimeOnTaskMetric", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "avgMinsPerDoc", - "description": "The average amount of minutes reviewers spend on documents for this workflow, aggregated across review and exceptions queue", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "avgMinsPerDocReview", - "description": "The average amount of minutes reviewers spend on documents for this workflow in the review queue", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "avgMinsPerDocExceptions", - "description": "The average amount of minutes reviewers spend on documents for this workflow in the exceptions queue", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DailyTimeOnTaskMetric", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "avgMinsPerDoc", - "description": "The average amount of minutes reviewers spend on documents for this workflow, aggregated across review and exceptions queue", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "avgMinsPerDocReview", - "description": "The average amount of minutes reviewers spend on documents for this workflow in the review queue", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "avgMinsPerDocExceptions", - "description": "The average amount of minutes reviewers spend on documents for this workflow in the exceptions queue", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SubmissionMetrics", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "SubmissionMetric", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "daily", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DailySubmissionMetric", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SubmissionMetric", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "submitted", - "description": "Number of items submitted to the workflow", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "completed", - "description": "Number of items completed in the workflow, whether review was enabled or disabled", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "completedInReview", - "description": "Number of items that were accepted in either the review or exceptions queue", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rejectedInReview", - "description": "Number of items rejected from the exceptions queue", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "completedReviewQueue", - "description": "Number of items accepted in the review queue", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "completedExceptionQueue", - "description": "Number of items accepted in the exceptions queue", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DailySubmissionMetric", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submitted", - "description": "Number of items submitted to the workflow", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "completed", - "description": "Number of items completed in the workflow, whether review was enabled or disabled", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "completedInReview", - "description": "Number of items that were accepted in either the review or exceptions queue", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rejectedInReview", - "description": "Number of items rejected from the exceptions queue", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "completedReviewQueue", - "description": "Number of items accepted in the review queue", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "completedExceptionQueue", - "description": "Number of items accepted in the exceptions queue", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "QueueMetrics", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "dailyCumulative", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DailyQueueMetric", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DailyQueueMetric", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subsOnQueue", - "description": "Number of submissions on the queues waiting to be reviewed", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hoursOnQueue", - "description": "Cumulative hours of items on queues waiting to be reviewed", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "avgAgeInQueue", - "description": "Average cumulative age of items on queues waiting to be reviewed", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PredictionMetrics", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "aggregate", - "description": "Total number of model generated predictions for this workflow", - "args": [], - "type": { - "kind": "OBJECT", - "name": "PredictionMetric", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "daily", - "description": "Number of model generated predictions for the workflow, each day", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DailyPredictionMetric", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PredictionMetric", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "numPreds", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DailyPredictionMetric", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "numPreds", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "StpMetrics", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "workflow", - "description": "STP metrics aggregate at the level of the workflow", - "args": [], - "type": { - "kind": "OBJECT", - "name": "WorkflowStpMetrics", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "model", - "description": "Schema for model STP metrics including class STP metrics as child nodes on this object's schema", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ModelStpMetrics", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorkflowStpMetrics", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "daily", - "description": "Daily STP metrics aggregated to the level of the workflow", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DailyStpMetric", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DailyStpMetric", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewNumerator", - "description": "The number of human accepted model predictions that exactly match model predictions", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "autoReviewNumerator", - "description": "The number of human accepted auto review labels", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewDenom", - "description": "The union of user supplied labels and model predictions", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "autoReviewDenom", - "description": "The union of user supplied labels and auto review labels", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewStpPct", - "description": "Review numerator divided by review denominator, applicable if review is enabled and auto-review is disabled", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "autoReviewStpPct", - "description": "Auto review numerator divided by auto review denomoinator, applicable if auto-review is enabled", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ModelStpMetrics", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "modelGroupId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": "Aggregate STP metrics for the model based on filters applied to the query", - "args": [], - "type": { - "kind": "OBJECT", - "name": "StpMetric", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "daily", - "description": "Daily STP metrics for the model", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DailyStpMetric", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "classMetrics", - "description": "STP metrics for each class associated with the model", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ClassStpMetrics", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "StpMetric", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "reviewNumerator", - "description": "The number of human accepted model predictions that exactly match model predictions", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "autoReviewNumerator", - "description": "The number of human accepted auto review labels", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewDenom", - "description": "The union of user supplied labels and model predictions", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "autoReviewDenom", - "description": "The union of user supplied labels and auto review labels", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewStpPct", - "description": "Review numerator divided by review denominator, applicable if review is enabled and auto-review is disabled", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "autoReviewStpPct", - "description": "Auto review numerator divided by auto review denomoinator, applicable if auto-review is enabled", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ClassStpMetrics", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "className", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregate", - "description": "STP metrics for this class, aggregated based on the filters applied to the query", - "args": [], - "type": { - "kind": "OBJECT", - "name": "StpMetric", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "daily", - "description": "STP metrics for this class, daily", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DailyStpMetric", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "WORKFLOW_COLUMN_ENUM", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DATASET_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATED_AT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATED_BY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UPDATED_AT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UPDATED_BY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NAME", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "USER_ROLE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "STATUS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "REVIEWABLE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "REVIEW_ENABLED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTO_REVIEW_ENABLED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EST_HUMAN_TIME_MINS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorkflowFilter", - "description": null, - "specifiedByUrl": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": "name contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewable", - "description": "the workflow can use Review for its submissions", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewEnabled", - "description": "all new submissions will pass through Review", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "autoReviewEnabled", - "description": "all new submissions will wait for Auto Review", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorkflowFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorkflowFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ors", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorkflowFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ands", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorkflowFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Submission", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workflowId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "SubmissionStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": "Errors occured during this submission", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleted", - "description": "Submission files have been deleted from file store", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "inputFiles", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SubmissionFile", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "inputFile", - "description": "Local URL to first stored input", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "inputFilename", - "description": "Original name of first file", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resultFile", - "description": "Local URL to stored output", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "retrieved", - "description": "Submission has been marked as having been retrieved", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "autoReview", - "description": "Latest auto review for submission", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Review", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AutoReviewLoaded", - "description": "Internal field for review load", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "SubmissionStatus", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "PROCESSING", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PENDING_AUTO_REVIEW", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PENDING_REVIEW", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PENDING_ADMIN_REVIEW", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "COMPLETE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FAILED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SubmissionFile", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filepath", - "description": "Local URL to stored input", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filename", - "description": "Name of original file", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submissionId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Review", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submissionId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "completedAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rejected", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "adminReview", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": true, - "deprecationReason": "Please use review_type" - }, - { - "name": "reviewType", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "ReviewType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notes", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "changes", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "JSONString", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ReviewType", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "MANUAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTO", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ADMIN", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SubmissionPage", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "submissions", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Submission", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "SUBMISSION_COLUMN_ENUM", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DATASET_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "WORKFLOW_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "STATUS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ERRORS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DELETED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_FILE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_FILENAME", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "RESULT_FILE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "RETRIEVED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_AUTO_REVIEW_LOADED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SubmissionFilter", - "description": null, - "specifiedByUrl": null, - "fields": null, - "inputFields": [ - { - "name": "inputFilename", - "description": "input filename contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": "submission status is", - "type": { - "kind": "ENUM", - "name": "SubmissionStatus", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "retrieved", - "description": "Submission has been marked as having been retrieved", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SubmissionFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SubmissionFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ors", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SubmissionFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ands", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SubmissionFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Refresh", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "refreshedAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTimeISO", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "refreshStartedAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTimeISO", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "refreshing", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "QuestionnairePage", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "questionnaires", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Questionnaire", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Questionnaire", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "active", - "description": "Labeling tasks are enabled", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "activeLearning", - "description": "Predictions are enabled", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "role", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "Roles", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "assignedUsers", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "QuestionnaireUser", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "Unix timestamp", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": "User id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataType", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "DataType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subsetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "forceTextMode", - "description": "Labeling will always be done in Text mode", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "instructions", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "numTotalExamples", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "numFullyLabeled", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "numLabeledByMe", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "numRejected", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "processors", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Processor", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "odl", - "description": "On-document labeling interface enabled", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "questions", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Question", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "questionsStatus", - "description": "cumulative status of all questions in questionnaire", - "args": [], - "type": { - "kind": "ENUM", - "name": "QuestionStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sourceColumnId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "Unix timestamp", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedBy", - "description": "User id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "examples", - "description": null, - "args": [ - { - "name": "numExamples", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "questionId", - "description": "First question in questionnaire is selected if not provided", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datafileId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Example", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "QuestionnaireUser", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "questionnaireId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "permissions", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "role", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "Roles", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelCount", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "DataType", - "description": null, - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "TEXT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IMAGE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Question", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "TaskType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DatasetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SubsetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelsetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelset", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "LabelSet", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keywords", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "QuestionStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "questionnaireId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "text", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelGroupId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelGroup", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ModelGroup", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targets", - "description": "Ordered list of target names.", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "QuestionStatus", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "STARTED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FAILED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "COMPLETE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "QUESTIONNAIRE_COLUMN_ENUM", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACTIVE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACTIVE_LEARNING", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ROLE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATED_AT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATED_BY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DATA_TYPE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DATASET_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SUBSET_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FORCE_TEXT_MODE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INSTRUCTIONS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NAME", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NUM_TOTAL_EXAMPLES", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NUM_FULLY_LABELED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NUM_LABELED_BY_ME", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NUM_REJECTED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ODL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "QUESTIONS_STATUS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SOURCE_COLUMN_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UPDATED_AT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UPDATED_BY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "QuestionnaireFilter", - "description": null, - "specifiedByUrl": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": "name contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "QuestionnaireFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "QuestionnaireFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ors", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "QuestionnaireFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ands", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "QuestionnaireFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ModelGroupPage", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "modelGroups", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ModelGroup", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "MODELGROUP_COLUMN_ENUM", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DATASET_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NAME", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "STATUS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TASK_TYPE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DATA_TYPE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "RETRAIN_REQUIRED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INTERLABELER_RESOLUTION", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATED_AT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATED_BY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UPDATED_AT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UPDATED_BY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SUBSET_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LABELSET_COLUMN_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "QUESTIONNAIRE_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "WORKFLOW_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ModelGroupFilter", - "description": null, - "specifiedByUrl": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": "name contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "taskType", - "description": "model group task type is", - "type": { - "kind": "ENUM", - "name": "TaskType", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subsetId", - "description": "model group subset id is", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ModelGroupFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ModelGroupFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ors", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ModelGroupFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ands", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ModelGroupFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ModelSimilarity", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "row", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Job", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "JobStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "result", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "JSONString", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ready", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "JobStatus", - "description": "Adapted from Celery Task Status", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "PENDING", - "description": "Task state is unknown (assumed pending since you know the id).", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "RECEIVED", - "description": "Task was received by a worker (only used in events).", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "STARTED", - "description": "Task was started by a worker (:setting:`task_track_started`).", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SUCCESS", - "description": "Task succeeded", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FAILURE", - "description": "Task failed", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "REVOKED", - "description": "Task was revoked.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "REJECTED", - "description": "Task was rejected (only used in events).", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "RETRY", - "description": "Task is waiting for retry.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IGNORED", - "description": "Job Status IGNORED", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TRAILED", - "description": "Job Status TRAILED", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FireGroupPage", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "fireGroups", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FireGroup", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FireGroup", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datacolumnId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "defaultFire", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Fire", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "featurecolumnId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fires", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Fire", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "numRows", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "processors", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Processor", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ready", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "FireStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subsetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedBy", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Fire", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "clusterId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datacolumnId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "featurecolumnId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filters", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fireGroupId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "FireStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subsetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "vectorizerId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "FireStatus", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "CREATING", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "COMPLETE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FAILED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "FIREGROUP_COLUMN_ENUM", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATED_AT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATED_BY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DATACOLUMN_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DATASET_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FEATURECOLUMN_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NAME", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NUM_ROWS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "READY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "STATUS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SUBSET_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UPDATED_AT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UPDATED_BY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FireGroupFilter", - "description": null, - "specifiedByUrl": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": "name contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FireGroupFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FireGroupFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ands", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FireGroupFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ors", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FireGroupFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FireSimilarity", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "row", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ExportPage", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "exports", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Export", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "EXPORT_COLUMN_ENUM", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DATASET_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NAME", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "STATUS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NUM_LABELS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ANONYMOUS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DOWNLOAD_URL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATED_AT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATED_BY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "PermissionType", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "READ_METADATA", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "READ_LABELS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "READ_DATAPOINTS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MODIFY_METADATA", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DELETE_DATASET", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ADD_LABEL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MANAGE_USERS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FEATURIZE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "READ_USERS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "READ_SUBMISSIONS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ADD_REVIEW", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATE_SUBMISSION", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ADD_ADMIN_REVIEW", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DatasetPage", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "datasets", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Dataset", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "DATASET_COLUMN_ENUM", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NAME", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "STATUS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ROW_COUNT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DEFAULT_SUBSET_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TYPE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ERROR_INFO", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATED_AT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATED_BY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UPDATED_AT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UPDATED_BY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NUM_FIRE_GROUPS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NUM_MODEL_GROUPS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NUM_QUESTIONNAIRES", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DatasetFilter", - "description": null, - "specifiedByUrl": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": "name contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DatasetFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DatasetFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ands", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DatasetFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ors", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DatasetFilter", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DataPointSearchResult", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "result", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "DataPointSearchResultSnippet", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "context", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "DataPointSearchResultSnippet", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DataPointSearchResultSnippet", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "start", - "description": "Starting index in text", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "end", - "description": "Exclusive end index in text", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "text", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SuperMutation", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "generateResetLink", - "description": null, - "args": [ - { - "name": "userId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GenerateResetLink", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "activateUser", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deactivateUser", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modifyScopes", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "scopes", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Scope", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unlockUser", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "invalidateSessions", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workflowSubmission", - "description": null, - "args": [ - { - "name": "bundle", - "description": "Batch all files under a single submission", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "duplicationId", - "description": "UUID for duplicate Submissions caching", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "files", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "recordSubmission", - "description": "Record submission for future use", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resultVersion", - "description": "Submission output result file version", - "type": { - "kind": "ENUM", - "name": "SubmissionResultVersion", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workflowId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SubmissionResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workflowUrlSubmission", - "description": null, - "args": [ - { - "name": "bundle", - "description": "Batch all urls under a single submission", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "duplicationId", - "description": "UUID for duplicate Submissions caching", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "recordSubmission", - "description": "Record submission for future use", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resultVersion", - "description": "Submission output result file version", - "type": { - "kind": "ENUM", - "name": "SubmissionResultVersion", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "urls", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workflowId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SubmissionResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "toggleWorkflowReview", - "description": null, - "args": [ - { - "name": "completeExistingSubmissions", - "description": "If toggling review off, mark existing submissions waiting for review as complete. Ignored if toggling review on.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "enableReview", - "description": "Place all future submissions into review queue", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workflowId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Workflow", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "toggleWorkflowAutoReview", - "description": null, - "args": [ - { - "name": "enableAutoReview", - "description": "All new submissions will wait for Auto Review", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateExistingSubmissions", - "description": "If toggling auto review on, mark existing subs pending review as pending auto review. Ignore if toggling off", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workflowId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Workflow", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "addDataToWorkflow", - "description": null, - "args": [ - { - "name": "workflowId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "AddDataToWorkflow", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateWorkflowMeta", - "description": null, - "args": [ - { - "name": "estHumanTimeMins", - "description": "Estimated human time to complete the workflow in minutes", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workflowId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Workflow", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateSubmission", - "description": null, - "args": [ - { - "name": "retrieved", - "description": "Mark the submission as having been retrieved", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submissionId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Submission", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submitReview", - "description": null, - "args": [ - { - "name": "changes", - "description": null, - "type": { - "kind": "SCALAR", - "name": "JSONString", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notes", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rejected", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submissionId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Review", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submitAutoReview", - "description": null, - "args": [ - { - "name": "changes", - "description": null, - "type": { - "kind": "SCALAR", - "name": "JSONString", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "forceComplete", - "description": "Bypass Review/Exception queue (not recommended)", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rejected", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submissionId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SubmitAutoReview", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submissionResults", - "description": null, - "args": [ - { - "name": "submissionId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SubmissionResults", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userSnapshotReport", - "description": null, - "args": [ - { - "name": "date", - "description": "User information on this date (23:59 UTC)", - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filters", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserReportFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reportFormat", - "description": "Format of report to generate, defaults to CSV", - "type": { - "kind": "ENUM", - "name": "ReportFormat", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GenerateUserSnapshotReport", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userChangelogReport", - "description": null, - "args": [ - { - "name": "endDate", - "description": "Changelog up to this date (23:59 UTC)", - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filters", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UserReportFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reportFormat", - "description": "Format of report to generate, defaults to CSV", - "type": { - "kind": "ENUM", - "name": "ReportFormat", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "startDate", - "description": "Changelog from this date (00:00 UTC)", - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GenerateUserChangelogReport", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "refreshViews", - "description": null, - "args": [ - { - "name": "force", - "description": "Force refresh views if the views were refreshed less than cooldown period ago.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Refresh", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createQuestionnaire", - "description": null, - "args": [ - { - "name": "activeLearning", - "description": "Enable predictions on the questionnaire", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataType", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "DataType", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasetId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "forceTextMode", - "description": "Always use Text Labeling UI", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "instructions", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelTrainingOptions", - "description": null, - "type": { - "kind": "SCALAR", - "name": "JSONString", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelType", - "description": null, - "type": { - "kind": "ENUM", - "name": "ModelType", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "numLabelersRequired", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "originalLabelsetId", - "description": "Create a new questionnaire from an existing labelset.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "processors", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "InputProcessor", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "questions", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "QuestionInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sourceColumnId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Questionnaire", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateQuestionnaire", - "description": null, - "args": [ - { - "name": "active", - "description": "Enable labeling tasks", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "activeLearning", - "description": "Enable predictions on the questionnaire", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataType", - "description": null, - "type": { - "kind": "ENUM", - "name": "DataType", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "instructions", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Questionnaire", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteQuestionnaire", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteQuestionnaire", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submitLabels", - "description": null, - "args": [ - { - "name": "datasetId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labels", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SubmissionLabel", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelsetId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelGroupId", - "description": "Model group to retrain after label submission", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SubmitLabels", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "addTarget", - "description": null, - "args": [ - { - "name": "questionnaireId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "target", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Question", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateQuestionKeywords", - "description": null, - "args": [ - { - "name": "globalPreference", - "description": "Use keywords for all users", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keywords", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "questionnaireId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "UpdateKeywords", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "addQuestionnaireUser", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "QuestionnaireUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "removeQuestionnaireUser", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "RemoveQuestionnaireUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cancelModelTraining", - "description": null, - "args": [ - { - "name": "modelId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CancelModelTraining", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createModelGroup", - "description": null, - "args": [ - { - "name": "datasetId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "domain", - "description": null, - "type": { - "kind": "ENUM", - "name": "FeatureDomainEnum", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "finetune", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "interlabelerResolution", - "description": null, - "type": { - "kind": "ENUM", - "name": "LabelResolutionStrategy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelsetColumnId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "makePredictions", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelTrainingOptions", - "description": null, - "type": { - "kind": "SCALAR", - "name": "JSONString", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelType", - "description": null, - "type": { - "kind": "ENUM", - "name": "ModelType", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "processors", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "InputProcessor", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rowIdx", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sourceColumnId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subsetId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "testSplit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": "0.2", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ModelGroup", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "retrainModelGroup", - "description": null, - "args": [ - { - "name": "forceRetrain", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "interlabelerResolution", - "description": null, - "type": { - "kind": "ENUM", - "name": "LabelResolutionStrategy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelGroupId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelType", - "description": "Can only be updated on retrain for extraction models.", - "type": { - "kind": "ENUM", - "name": "ModelType", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ModelGroup", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateModelGroupSettings", - "description": null, - "args": [ - { - "name": "domain", - "description": null, - "type": { - "kind": "ENUM", - "name": "FeatureDomainEnum", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "finetune", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "interlabelerResolution", - "description": null, - "type": { - "kind": "ENUM", - "name": "LabelResolutionStrategy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "makePredictions", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelGroupId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "predictOptions", - "description": null, - "type": { - "kind": "SCALAR", - "name": "JSONString", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rocAucAveraging", - "description": null, - "type": { - "kind": "ENUM", - "name": "RocAucAveraging", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "samplingStrategy", - "description": null, - "type": { - "kind": "ENUM", - "name": "SamplingStrategy", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "taskType", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaskType", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "testSplit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "wordPredictorStrength", - "description": null, - "type": { - "kind": "ENUM", - "name": "WordPredictorStrength", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ModelGroup", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateModelGroupName", - "description": null, - "args": [ - { - "name": "modelGroupId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ModelGroup", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteModelGroup", - "description": null, - "args": [ - { - "name": "modelGroupId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteModelGroup", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "optimizeModelGroup", - "description": null, - "args": [ - { - "name": "makePredictions", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelGroupId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ModelGroup", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelPredict", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "predictOptions", - "description": null, - "type": { - "kind": "SCALAR", - "name": "JSONString", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ModelPredict", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelLoad", - "description": null, - "args": [ - { - "name": "modelId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ModelLoad", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateLabelsetTargetPositions", - "description": null, - "args": [ - { - "name": "labelsetId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetNames", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "LabelSet", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "addLabelsetTarget", - "description": null, - "args": [ - { - "name": "labelsetId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetName", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "LabelSet", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createFireGroup", - "description": null, - "args": [ - { - "name": "datacolumnId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasetId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filters", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FiltersInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "processors", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "InputProcessor", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "FireGroup", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateFireGroup", - "description": null, - "args": [ - { - "name": "filters", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FiltersInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "FireGroup", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteFireGroup", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteFireGroup", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pdfExtraction", - "description": null, - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "images", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "metadata", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageFormat", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rawText", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "singleColumn", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tables", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "text", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "PDFExtraction", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "documentExtraction", - "description": null, - "args": [ - { - "name": "files", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "jsonConfig", - "description": null, - "type": { - "kind": "SCALAR", - "name": "JSONString", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DocumentExtraction", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "activeFormFields", - "description": null, - "args": [ - { - "name": "files", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ActiveFormFields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createExport", - "description": null, - "args": [ - { - "name": "anonymous", - "description": "Anonymize user information", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "columnIds", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "combineLabels", - "description": "One row per example, combine labels from multiple labelers into a single row", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasetId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fileInfo", - "description": "Include datafile information", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelsetIds", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subsetIds", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Export", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "newDataset", - "description": null, - "args": [ - { - "name": "kloudless", - "description": "DEPRECATED: Use kloudless uploader. If false, uses Nginx for local file uploads", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "metadataList", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "JSONString", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Dataset", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateDataset", - "description": null, - "args": [ - { - "name": "datasetId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "New name of the dataset.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Dataset", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "addDatasetFiles", - "description": null, - "args": [ - { - "name": "autoprocess", - "description": "Automatically process files that are uploaded and associated with the dataset", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasetId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "metadataList", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "JSONString", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Dataset", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteDatasetFile", - "description": null, - "args": [ - { - "name": "datasetId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fileId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Dataset", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteDataset", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteDataset", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "addDatasetUser", - "description": null, - "args": [ - { - "name": "datasetId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "role", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Roles", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DatasetUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modifyDatasetUser", - "description": null, - "args": [ - { - "name": "datasetId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "role", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Roles", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DatasetUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteDatasetUser", - "description": null, - "args": [ - { - "name": "datasetId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteDatasetUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createDataset", - "description": null, - "args": [ - { - "name": "datasetType", - "description": null, - "type": { - "kind": "ENUM", - "name": "DatasetType", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "Name of the dataset to create", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Dataset", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "addDataFiles", - "description": null, - "args": [ - { - "name": "datafileIds", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasetId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Dataset", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "addDataCsv", - "description": null, - "args": [ - { - "name": "datafileIds", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasetId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Dataset", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "retryUrl", - "description": null, - "args": [ - { - "name": "datafileId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasetId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "newUrl", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Dataset", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateUser", - "description": null, - "args": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "generateNewApiRefreshToken", - "description": "Example:\nmutation generate_new_refresh_token {\n GenerateNewApiRefreshToken{\n refresh_token\n }\n}", - "args": [], - "type": { - "kind": "OBJECT", - "name": "GenerateNewApiRefreshToken", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateUserPreference", - "description": null, - "args": [ - { - "name": "app", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "key", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "JSONString", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Preference", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteUserPreference", - "description": null, - "args": [ - { - "name": "app", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "key", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DeletePreference", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GenerateResetLink", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "link", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SubmissionResult", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "jobIds", - "description": "Returned if submissions are not recorded", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submissionIds", - "description": "Returned if submissions are recorded", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submissions", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Submission", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isDuplicateRequest", - "description": "Returned if submissions are duplicates", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FileInput", - "description": null, - "specifiedByUrl": null, - "fields": null, - "inputFields": [ - { - "name": "filename", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filemeta", - "description": null, - "type": { - "kind": "SCALAR", - "name": "JSONString", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "SubmissionResultVersion", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ONE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TWO", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OLDEST_SUPPORTED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LATEST", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AddDataToWorkflow", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "subsetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workflow", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Workflow", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SubmitAutoReview", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "jobId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SubmissionResults", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "jobId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GenerateUserSnapshotReport", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "jobId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ReportFormat", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "CSV", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "JSON", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GenerateUserChangelogReport", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "jobId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "InputProcessor", - "description": null, - "specifiedByUrl": null, - "fields": null, - "inputFields": [ - { - "name": "processorType", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProcessorType", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "args", - "description": null, - "type": { - "kind": "SCALAR", - "name": "JSONString", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "QuestionInput", - "description": null, - "specifiedByUrl": null, - "fields": null, - "inputFields": [ - { - "name": "type", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TaskType", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelsetId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keywords", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "text", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelGroupId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targets", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DeleteQuestionnaire", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SubmitLabels", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SubmissionLabel", - "description": null, - "specifiedByUrl": null, - "fields": null, - "inputFields": [ - { - "name": "rowIndex", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "target", - "description": null, - "type": { - "kind": "SCALAR", - "name": "JSONString", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rejected", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleted", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "override", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UpdateKeywords", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "keywords", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RemoveQuestionnaireUser", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CancelModelTraining", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "FeatureDomainEnum", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "STANDARD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "STANDARD_V2", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TOPICS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SENTIMENT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FINANCE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EMOTION", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENSEMBLE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FASTTEXT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSUPERVISEDSENTIMENT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IMAGE_V2", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IMAGE_V3", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IMAGE_V4", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IMAGE_ENSEMBLE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "RocAucAveraging", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "SIMPLE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "WEIGHTED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "SamplingStrategy", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "NO_SAMPLING", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "RANDOM_OVERSAMPLE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "WordPredictorStrength", - "description": "An enumeration.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "STRONG", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MODERATE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "WEAK", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DeleteModelGroup", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ModelPredict", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "jobId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ModelLoad", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FiltersInput", - "description": null, - "specifiedByUrl": null, - "fields": null, - "inputFields": [ - { - "name": "labels", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "predictionLabelsetId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetLabelsetId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DeleteFireGroup", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PDFExtraction", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "jobId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DocumentExtraction", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "jobIds", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ActiveFormFields", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "jobIds", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DeleteDataset", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DeleteDatasetUser", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GenerateNewApiRefreshToken", - "description": "Example:\nmutation generate_new_refresh_token {\n GenerateNewApiRefreshToken{\n refresh_token\n }\n}", - "specifiedByUrl": null, - "fields": [ - { - "name": "refreshToken", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DeletePreference", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Subscription", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "datasetCreated", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Dataset", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasetUpdated", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Dataset", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasetDeleted", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Dataset", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Schema", - "description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.", - "specifiedByUrl": null, - "fields": [ - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "types", - "description": "A list of all types supported by this server.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "queryType", - "description": "The type that query operations will be rooted at.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mutationType", - "description": "If this server supports mutation, the type that mutation operations will be rooted at.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subscriptionType", - "description": "If this server support subscription, the type that subscription operations will be rooted at.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "directives", - "description": "A list of all directives supported by this server.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Directive", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Type", - "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByUrl`, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.", - "specifiedByUrl": null, - "fields": [ - { - "name": "kind", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "__TypeKind", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "specifiedByUrl", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fields", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Field", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "interfaces", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "possibleTypes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "enumValues", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__EnumValue", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "inputFields", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ofType", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "__TypeKind", - "description": "An enum describing what kind of type a given `__Type` is.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "SCALAR", - "description": "Indicates this type is a scalar.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OBJECT", - "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INTERFACE", - "description": "Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNION", - "description": "Indicates this type is a union. `possibleTypes` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM", - "description": "Indicates this type is an enum. `enumValues` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_OBJECT", - "description": "Indicates this type is an input object. `inputFields` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LIST", - "description": "Indicates this type is a list. `ofType` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NON_NULL", - "description": "Indicates this type is a non-null. `ofType` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Field", - "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.", - "specifiedByUrl": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "args", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isDeprecated", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deprecationReason", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__InputValue", - "description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.", - "specifiedByUrl": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "defaultValue", - "description": "A GraphQL-formatted string representing the default value for this input value.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isDeprecated", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deprecationReason", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__EnumValue", - "description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.", - "specifiedByUrl": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isDeprecated", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deprecationReason", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Directive", - "description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.", - "specifiedByUrl": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isRepeatable", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locations", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "__DirectiveLocation", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "args", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "__DirectiveLocation", - "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", - "specifiedByUrl": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "QUERY", - "description": "Location adjacent to a query operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MUTATION", - "description": "Location adjacent to a mutation operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SUBSCRIPTION", - "description": "Location adjacent to a subscription operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FIELD", - "description": "Location adjacent to a field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FRAGMENT_DEFINITION", - "description": "Location adjacent to a fragment definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FRAGMENT_SPREAD", - "description": "Location adjacent to a fragment spread.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INLINE_FRAGMENT", - "description": "Location adjacent to an inline fragment.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VARIABLE_DEFINITION", - "description": "Location adjacent to a variable definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SCHEMA", - "description": "Location adjacent to a schema definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SCALAR", - "description": "Location adjacent to a scalar definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OBJECT", - "description": "Location adjacent to an object type definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FIELD_DEFINITION", - "description": "Location adjacent to a field definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ARGUMENT_DEFINITION", - "description": "Location adjacent to an argument definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INTERFACE", - "description": "Location adjacent to an interface definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNION", - "description": "Location adjacent to a union definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM", - "description": "Location adjacent to an enum definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM_VALUE", - "description": "Location adjacent to an enum value definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_OBJECT", - "description": "Location adjacent to an input object type definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_FIELD_DEFINITION", - "description": "Location adjacent to an input object field definition.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Component", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "docbotId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "componentAppId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "componentType", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "ComponentType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewable", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "ComponentInterface", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ModelGroupComponent", - "description": null, - "specifiedByUrl": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "docbotId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "componentAppId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "componentType", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "ComponentType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewable", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "taskType", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "TaskType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modelType", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "ModelType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "ComponentInterface", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - } - ], - "directives": [ - { - "name": "include", - "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", - "isRepeatable": false, - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "args": [ - { - "name": "if", - "description": "Included when true.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ] - }, - { - "name": "skip", - "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", - "isRepeatable": false, - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "args": [ - { - "name": "if", - "description": "Skipped when true.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ] - } - ] - } -} \ No newline at end of file diff --git a/src/main/java/com/indico/Async.java b/src/main/java/com/indico/Async.java deleted file mode 100644 index e516847..0000000 --- a/src/main/java/com/indico/Async.java +++ /dev/null @@ -1,60 +0,0 @@ -package com.indico; - -import com.apollographql.apollo.ApolloCall; -import com.apollographql.apollo.api.Response; -import com.apollographql.apollo.exception.ApolloException; - -import java.util.concurrent.CompletableFuture; - -import com.apollographql.apollo.exception.ApolloHttpException; - -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; - -public class Async { - private static final Logger logger = LogManager.getLogger(Async.class); - - /** - * Executes a an apollo graphQL call. - * Specify the maximum amount of retries. - * @param apolloCall - * @param - * @return - */ - public static CompletableFuture> executeSync(ApolloCall apolloCall) { - CompletableFuture> completableFuture = new CompletableFuture<>(); - completableFuture.whenComplete((tResponse, throwable) -> { - if (completableFuture.isCancelled()) { - - completableFuture.cancel(true); - } - }); - apolloCall.enqueue(new ApolloCall.Callback() { - - - public void onResponse(Response response) { - completableFuture.complete(response); - - - } - - public void onFailure(ApolloException e) { - logger.error("Failed to execute apollo call..."); - completableFuture.completeExceptionally(e); - } - - public void onHttpError(ApolloHttpException e) { - okhttp3.Response response = e.rawResponse(); - if (response != null) { - response.close(); - } - completableFuture.completeExceptionally(e); - } - - }); - return completableFuture; - - - } - -} diff --git a/src/main/java/com/indico/AuthorizationInterceptor.java b/src/main/java/com/indico/AuthorizationInterceptor.java index 2c428a2..eafa761 100644 --- a/src/main/java/com/indico/AuthorizationInterceptor.java +++ b/src/main/java/com/indico/AuthorizationInterceptor.java @@ -1,10 +1,10 @@ package com.indico; +import com.indico.exceptions.IndicoAuthorizationException; import okhttp3.*; import org.json.JSONObject; import java.io.IOException; -import java.net.SocketTimeoutException; import java.util.concurrent.TimeUnit; public class AuthorizationInterceptor implements Interceptor{ @@ -42,6 +42,7 @@ public void refreshAuthState() throws IOException { refreshResponse = refreshCall.execute(); } catch(Exception ex) { + refreshResponse.close(); continue; } } @@ -49,9 +50,17 @@ public void refreshAuthState() throws IOException { String responseBody = refreshResponse.body().string(); JSONObject json = new JSONObject(responseBody); authToken = (String) json.get("auth_token"); - refreshResponse.close(); + if (refreshResponse != null) + { + refreshResponse.close(); + } } else { - throw new RuntimeException("Failed to refresh authentication state"); + String reason = ""; + if (refreshResponse != null) + { reason = refreshResponse.message(); + refreshResponse.close(); + } + throw new IndicoAuthorizationException("Failed to refresh authentication state " + reason); } } diff --git a/src/main/java/com/indico/IndicoClient.java b/src/main/java/com/indico/IndicoClient.java deleted file mode 100644 index a0b80e3..0000000 --- a/src/main/java/com/indico/IndicoClient.java +++ /dev/null @@ -1,209 +0,0 @@ -package com.indico; - -import java.io.IOException; -import java.util.concurrent.LinkedBlockingQueue; -import java.util.concurrent.ThreadPoolExecutor; -import java.util.concurrent.TimeUnit; -import com.apollographql.apollo.ApolloClient; -import com.indico.mutation.*; -import com.indico.query.*; -import com.indico.storage.UploadFile; -import okhttp3.OkHttpClient; - -import com.indico.jobs.JobQuery; -import com.indico.storage.RetrieveBlob; -import com.indico.storage.PurgeBlob; -import com.indico.mutation.WorkflowSubmission; -import com.indico.request.GraphQLRequest; - -/** - * Indico client with all available top level query and mutations - */ -public class IndicoClient implements AutoCloseable { - - public final IndicoConfig config; - public final OkHttpClient okHttpClient; - public final ApolloClient apolloClient; - private final ThreadPoolExecutor dispatcher; - - public IndicoClient(IndicoConfig config) { - this.config = config; - String serverURL = config.protocol + "://" + config.host; - - AuthorizationInterceptor interceptor = new AuthorizationInterceptor(serverURL, config.apiToken, config); - RetryInterceptor retryInterceptor = new RetryInterceptor(config); - try { - interceptor.refreshAuthState(); - } catch (IOException exception) { - throw new RuntimeException(exception); - } - - this.okHttpClient = new OkHttpClient.Builder() - .authenticator(new TokenAuthenticator(interceptor)) - .addInterceptor(interceptor) - .addInterceptor(retryInterceptor) - .readTimeout(config.connectionReadTimeout, TimeUnit.SECONDS) - .writeTimeout(config.connectionWriteTimeout, TimeUnit.SECONDS) - .connectTimeout(config.connectTimeout, TimeUnit.SECONDS) - .build(); - - this.dispatcher = dispatcher(config.maxConnections); - - this.apolloClient = ApolloClient.builder() - .serverUrl(serverURL + "/graph/api/graphql") - .okHttpClient(this.okHttpClient) - .dispatcher(this.dispatcher) - .build(); - } - - /** - * Create a new GraphQL Request - * - * @return GraphQLRequest - */ - public GraphQLRequest graphQLRequest() { - return new GraphQLRequest(this); - } - - /** - * Create a new Query for ModelGroup - * - * @return ModelGroupQuery - */ - public ModelGroupQuery modelGroupQuery() { - return new ModelGroupQuery(this); - } - - /** - * Create a new Query for TrainingModelWithProgress - * - * @return TrainingModelWithProgressQuery - */ - public TrainingModelWithProgressQuery trainingModelWithProgressQuery() { - return new TrainingModelWithProgressQuery(this); - } - - /** - * Create a new mutation to predict data - * - * @return ModelGroupPredict - */ - public ModelGroupPredict modelGroupPredict() { - return new ModelGroupPredict(this); - } - - /** - * Create a new mutation to load model in ModelGroup - * - * @return ModelGroupLoad - */ - public ModelGroupLoad modelGroupLoad() { - return new ModelGroupLoad(this); - } - - /** - * Create a new mutation to submit document for extraction - * - * @return DocumentExtraction - */ - public DocumentExtraction documentExtraction() { - return new DocumentExtraction(this); - } - - /** - * Create a new query for a workflow - * - * @return WorkflowQuery - */ - public WorkflowQuery workflowQuery() { - return new WorkflowQuery(); - } - - /** - * Create a new mutation to submit documents to process by a workflow - * - * @return WorkflowSubmission - */ - public WorkflowSubmission workflowSubmission() { - return new WorkflowSubmission(this); - } - - public WorkflowJob workflowJob() { return new WorkflowJob(this); } - - public GetSubmission getSubmission() { return new GetSubmission(this); } - - public UpdateSubmission updateSubmission() { return new UpdateSubmission(this); } - - public ListSubmissions listSubmissions() { return new ListSubmissions(this); } - - public GenerateSubmissionResult generateSubmissionResult() { return new GenerateSubmissionResult(this); } - - public SubmissionResult submissionResult() { return new SubmissionResult(this); } - - /** - * Create a new query to list workflows for dataset - * @return ListWorkflowsForDatasetQuery - */ - public ListWorkflows listWorkflows() { - return new ListWorkflows(this); - } - - /** - * Create a query to retrieve async job info - * - * @return JobQuery - */ - public JobQuery jobQuery() { - return new JobQuery(this); - } - - /** - * Retrieve a blob from indico blob storage - * - * @return RetrieveBlob - */ - public RetrieveBlob retrieveBlob() { - return new RetrieveBlob(this); - } - - /** - * Create a request to delete a blob fron indico blob storage - * - * @return PurgeBlob - */ - public PurgeBlob purgeBlob() { - return new PurgeBlob(); - } - - /** - * Uploads files - * - * @return UploadFile - */ - public UploadFile uploadFile() { - return new UploadFile(this); - } - - /** - * Closes the connection to graphql server since the ThreadPool remains - * active for several seconds before closing due to multiple asynchronous - * queries and prevents JVM from closing for 60 seconds. - * - */ - @Override - public void close() { - this.dispatcher.shutdown(); - this.okHttpClient.dispatcher().executorService().shutdown(); - } - - /** - * Synchronous Queue dispatcher for ApolloClient - * - * @return instance of ThreadPoolExecutor - */ - private ThreadPoolExecutor dispatcher(int maxConnections) { - return new ThreadPoolExecutor(0, maxConnections, 60, TimeUnit.SECONDS, - new LinkedBlockingQueue<>(), (Runnable runnable) - -> new Thread(runnable, "Apollo Dispatcher")); - } -} diff --git a/src/main/java/com/indico/IndicoClient.kt b/src/main/java/com/indico/IndicoClient.kt new file mode 100644 index 0000000..18903cf --- /dev/null +++ b/src/main/java/com/indico/IndicoClient.kt @@ -0,0 +1,95 @@ +package com.indico + +import com.expediagroup.graphql.client.types.GraphQLClientRequest +import com.expediagroup.graphql.client.types.GraphQLClientResponse +import com.indico.mutation.* +import com.indico.query.* +import com.indico.storage.RetrieveBlob +import com.indico.storage.UploadFile + +/** + * Indico Client for communicating with the platform's GraphQL API. + */ +interface IndicoClient: AutoCloseable { + + /** + * Close and dispose of connections. + */ + override fun close() + + /** + * Execute any request which inherits from GraphQLClientRequest synchronously. + */ + fun execute(request: GraphQLClientRequest) : GraphQLClientResponse + + /** + * Execute any request which inherits from GraphQLClientRequest asynchronously. + */ + suspend fun executeAsync(request: GraphQLClientRequest) : GraphQLClientResponse + + /** + * Query for submissions and recieve a list. + */ + fun listSubmissions(): ListSubmissions? + + /** + * Execute a mutation which submits to a workflow and generates a submission. + */ + fun workflowSubmission(): WorkflowSubmission? + + /** + * Execute a mutation to extract information from a document. + */ + fun documentExtraction(): DocumentExtraction? + + /** + * Generate submission results post-submission and post-review. + */ + fun generateSubmissionResult(): GenerateSubmissionResult? + + /** + * Load a model group given a ModelGroup or an integer id. + */ + fun modelGroupLoad(): ModelGroupLoad? + + /** + * Retrieve model group predictions. + */ + fun modelGroupPredict(): ModelGroupPredict? + + /** + * Retrieve submission result, especially after running GenerateSubmissionResult + */ + fun submissionResult(): SubmissionResult? + + /** + * Execute a mutation to update the status of a submission. + */ + fun updateSubmission(): UpdateSubmission? + + /** + * Retrieve a particular submission. + */ + fun getSubmission(): GetSubmission? + + /** + * Retrieve a particular model group. + */ + fun modelGroupQuery(): ModelGroupQuery? + + /** + * Retrieve information about the training progress of a model. + */ + fun trainingModelWithProgressQuery(): TrainingModelWithProgressQuery? + + /** + * Download a blob. Must call close() on the retrieved blob to dispose of the object after. + */ + fun retrieveBlob(): RetrieveBlob? + + /** + * Upload a particular file. + */ + fun uploadFile(): UploadFile? + +} \ No newline at end of file diff --git a/src/main/java/com/indico/IndicoKtorClient.kt b/src/main/java/com/indico/IndicoKtorClient.kt new file mode 100644 index 0000000..0e03056 --- /dev/null +++ b/src/main/java/com/indico/IndicoKtorClient.kt @@ -0,0 +1,135 @@ +package com.indico + +import com.expediagroup.graphql.client.jackson.GraphQLClientJacksonSerializer +import com.expediagroup.graphql.client.ktor.GraphQLKtorClient +import com.expediagroup.graphql.client.types.GraphQLClientRequest +import com.expediagroup.graphql.client.types.GraphQLClientResponse +import com.indico.mutation.* +import com.indico.query.* +import com.indico.storage.RetrieveBlob +import com.indico.storage.UploadFile +import io.ktor.client.* +import io.ktor.client.engine.okhttp.* +import io.ktor.utils.io.core.* +import kotlinx.coroutines.runBlocking +import okhttp3.OkHttpClient +import java.io.IOException +import java.net.URL +import java.util.concurrent.TimeUnit + +/** + * Kotlin based concrete implementation of the IndicoClient. + */ +class IndicoKtorClient(val config: IndicoConfig) : Closeable, IndicoClient { + + var graphClient: GraphQLKtorClient + var httpClient: OkHttpClient + + init { + val serverURL = config.protocol + "://" + config.host; + val apiUrl = serverURL+"/graph/api/graphql" + val interceptor = AuthorizationInterceptor(serverURL, config.apiToken, config) + val retryInterceptor = RetryInterceptor(config) + try { + interceptor.refreshAuthState() + } catch (exception: IOException) { + throw RuntimeException(exception) + } + + val preconfigOkHttpClient = OkHttpClient.Builder() + .authenticator(TokenAuthenticator(interceptor)) + .addInterceptor(interceptor) + .addInterceptor(retryInterceptor) + .readTimeout(config.connectionReadTimeout.toLong(), TimeUnit.SECONDS) + .writeTimeout(config.connectionWriteTimeout.toLong(), TimeUnit.SECONDS) + .connectTimeout(config.connectTimeout.toLong(), TimeUnit.SECONDS) + .followRedirects(true) + .build() + + val okHttpClient = HttpClient(engineFactory = OkHttp) { + engine { + config { + connectTimeout(config.connectTimeout.toLong(), TimeUnit.SECONDS) + readTimeout(60, TimeUnit.SECONDS) + writeTimeout(60, TimeUnit.SECONDS) + } + preconfigured = preconfigOkHttpClient + } + + } + this.httpClient = preconfigOkHttpClient + this.graphClient = GraphQLKtorClient( + url = URL(apiUrl), + httpClient = okHttpClient, + serializer = GraphQLClientJacksonSerializer() + ) + + } + override fun close() { + this.graphClient.close() + return + } + + + override fun execute( + request: GraphQLClientRequest, + ): GraphQLClientResponse { + return runBlocking { graphClient.execute(request) } + } + + override suspend fun executeAsync(request:GraphQLClientRequest):GraphQLClientResponse{ + return graphClient.execute(request) + } + + override fun listSubmissions(): ListSubmissions? { + return ListSubmissions(this) + } + + override fun workflowSubmission(): WorkflowSubmission?{ + return WorkflowSubmission(this) + } + + override fun documentExtraction(): DocumentExtraction{ + return DocumentExtraction(this) + } + + override fun generateSubmissionResult(): GenerateSubmissionResult? { + return GenerateSubmissionResult(this) + } + + override fun modelGroupLoad(): ModelGroupLoad? { + return ModelGroupLoad(this) + } + + override fun modelGroupPredict(): ModelGroupPredict? { + return ModelGroupPredict(this) + } + + override fun submissionResult(): SubmissionResult? { + return SubmissionResult(this) + } + + override fun updateSubmission(): UpdateSubmission? { + return UpdateSubmission(this) + } + + override fun getSubmission(): GetSubmission? { + return GetSubmission(this) + } + + override fun modelGroupQuery(): ModelGroupQuery? { + return ModelGroupQuery(this) + } + + override fun trainingModelWithProgressQuery(): TrainingModelWithProgressQuery? { + return TrainingModelWithProgressQuery(this) + } + + override fun retrieveBlob(): RetrieveBlob? { + return RetrieveBlob(this) + } + + override fun uploadFile(): UploadFile? { + return UploadFile(this) + } +} \ No newline at end of file diff --git a/src/main/java/com/indico/Mutation.java b/src/main/java/com/indico/Mutation.java deleted file mode 100644 index 3ab0a51..0000000 --- a/src/main/java/com/indico/Mutation.java +++ /dev/null @@ -1,10 +0,0 @@ -package com.indico; - -public interface Mutation { - - /** - * Execute the graphql query and retunrs the results as a specific type - * @return result of query of type T - */ - public T execute(); -} \ No newline at end of file diff --git a/src/main/java/com/indico/Query.java b/src/main/java/com/indico/Query.java deleted file mode 100644 index 79f38cf..0000000 --- a/src/main/java/com/indico/Query.java +++ /dev/null @@ -1,12 +0,0 @@ -package com.indico; - -public interface Query { - - /** - * Execute the graphql query and retunrs the results as a specific type - * @return result of query of type T - */ - public T query(); - public T refresh(T obj); - -} \ No newline at end of file diff --git a/src/main/java/com/indico/entity/Model.java b/src/main/java/com/indico/entity/Model.java index 2e6988a..f815864 100644 --- a/src/main/java/com/indico/entity/Model.java +++ b/src/main/java/com/indico/entity/Model.java @@ -1,6 +1,6 @@ package com.indico.entity; -import com.indico.type.ModelStatus; +import com.indico.graphql.enums.ModelStatus; public class Model { diff --git a/src/main/java/com/indico/entity/ModelGroup.java b/src/main/java/com/indico/entity/ModelGroup.java index 0bfa83d..c32edb4 100644 --- a/src/main/java/com/indico/entity/ModelGroup.java +++ b/src/main/java/com/indico/entity/ModelGroup.java @@ -1,6 +1,6 @@ package com.indico.entity; -import com.indico.type.ModelStatus; +import com.indico.graphql.enums.ModelStatus; public class ModelGroup { diff --git a/src/main/java/com/indico/exceptions/IndicoAuthorizationException.java b/src/main/java/com/indico/exceptions/IndicoAuthorizationException.java new file mode 100644 index 0000000..c1f3059 --- /dev/null +++ b/src/main/java/com/indico/exceptions/IndicoAuthorizationException.java @@ -0,0 +1,11 @@ +package com.indico.exceptions; + +public class IndicoAuthorizationException extends IndicoBaseException{ + public IndicoAuthorizationException(String msg) { + super(msg); + } + + public IndicoAuthorizationException(String msg, Throwable cause){ + super(msg, cause); + } +} diff --git a/src/main/java/com/indico/exceptions/IndicoBaseException.java b/src/main/java/com/indico/exceptions/IndicoBaseException.java new file mode 100644 index 0000000..00e88f9 --- /dev/null +++ b/src/main/java/com/indico/exceptions/IndicoBaseException.java @@ -0,0 +1,14 @@ +package com.indico.exceptions; + +public abstract class IndicoBaseException extends RuntimeException { + + public IndicoBaseException(String msg) + { + super(msg); + } + + public IndicoBaseException(String msg, Throwable cause) + { + super(msg, cause); + } +} diff --git a/src/main/java/com/indico/exceptions/IndicoInvalidRequestException.java b/src/main/java/com/indico/exceptions/IndicoInvalidRequestException.java new file mode 100644 index 0000000..dd8ec2f --- /dev/null +++ b/src/main/java/com/indico/exceptions/IndicoInvalidRequestException.java @@ -0,0 +1,11 @@ +package com.indico.exceptions; + +public class IndicoInvalidRequestException extends IndicoBaseException{ + public IndicoInvalidRequestException(String msg) { + super(msg); + } + + public IndicoInvalidRequestException(String msg, Throwable cause) { + super(msg, cause); + } +} diff --git a/src/main/java/com/indico/exceptions/IndicoMutationException.java b/src/main/java/com/indico/exceptions/IndicoMutationException.java new file mode 100644 index 0000000..d657a1e --- /dev/null +++ b/src/main/java/com/indico/exceptions/IndicoMutationException.java @@ -0,0 +1,11 @@ +package com.indico.exceptions; + +public class IndicoMutationException extends IndicoBaseException{ + public IndicoMutationException(String msg) { + super(msg); + } + + public IndicoMutationException(String msg, Throwable cause) { + super(msg, cause); + } +} diff --git a/src/main/java/com/indico/exceptions/IndicoNetworkException.java b/src/main/java/com/indico/exceptions/IndicoNetworkException.java new file mode 100644 index 0000000..b24e36c --- /dev/null +++ b/src/main/java/com/indico/exceptions/IndicoNetworkException.java @@ -0,0 +1,11 @@ +package com.indico.exceptions; + +public class IndicoNetworkException extends IndicoBaseException{ + public IndicoNetworkException(String msg) { + super(msg); + } + + public IndicoNetworkException(String msg, Throwable cause) { + super(msg, cause); + } +} diff --git a/src/main/java/com/indico/exceptions/IndicoQueryException.java b/src/main/java/com/indico/exceptions/IndicoQueryException.java new file mode 100644 index 0000000..f2dfbd6 --- /dev/null +++ b/src/main/java/com/indico/exceptions/IndicoQueryException.java @@ -0,0 +1,11 @@ +package com.indico.exceptions; + +public class IndicoQueryException extends IndicoBaseException{ + public IndicoQueryException(String msg) { + super(msg); + } + + public IndicoQueryException(String msg, Throwable cause) { + super(msg, cause); + } +} diff --git a/src/main/java/com/indico/jobs/Job.java b/src/main/java/com/indico/jobs/Job.java deleted file mode 100644 index 6212c3f..0000000 --- a/src/main/java/com/indico/jobs/Job.java +++ /dev/null @@ -1,113 +0,0 @@ -package com.indico.jobs; - -import java.util.List; -import java.util.ArrayList; -import java.util.concurrent.CompletionException; -import java.util.concurrent.ExecutionException; - -import com.apollographql.apollo.ApolloCall; -import com.apollographql.apollo.ApolloClient; -import com.apollographql.apollo.api.Response; -import com.indico.*; -import com.indico.type.JobStatus; -import org.json.JSONArray; -import org.json.JSONObject; - -/** - * Async Job information - */ -public class Job { - - public final String id; - private final IndicoClient indicoClient; - - public Job(IndicoClient indicoClient, String id) { - this.indicoClient = indicoClient; - this.id = id; - } - - /** - * Retrieve job status - * - * @return JobStatus - */ - public JobStatus status() { - try{ - ApolloCall apolloCall = this.indicoClient.apolloClient.query(JobStatusGraphQLQuery.builder() - .id(this.id) - .build()); - Response response = Async.executeSync(apolloCall).get(); - JobStatusGraphQLQuery.Data data = response.data(); - JobStatus status = data.job().status(); - return status; - }catch (CompletionException | ExecutionException | InterruptedException ex){ - throw new RuntimeException("Call for the job status failed", ex); - } - } - - public String resultAsString() { - String result = this.fetchResult(); - return result; - } - - /** - * Retrieve result. Status must be success or an error will be thrown. - * - * @return JSONObject - */ - public JSONObject result() { - String result = this.fetchResult(); - return new JSON(result).asJSONObject(); - } - - /** - * Retrieve results. Status must be success or an error will be thrown. - * - * @return JSONArray - */ - public JSONArray results() { - String result = this.fetchResult(); - return new JSON(result).asJSONArray(); - } - - /** - * Retrieve results as String - * - * @return Result String - */ - private String fetchResult() { - try{ - ApolloCall apolloCall = this.indicoClient.apolloClient.query(JobResultGraphQLQuery.builder() - .id(this.id) - .build()); - Response response = Async.executeSync(apolloCall).get(); - JobResultGraphQLQuery.Data data = response.data(); - - JobResultGraphQLQuery.Job job = data.job(); - JobStatus status = job.status(); - if (status != JobStatus.SUCCESS) { - throw new RuntimeException("Job finished with status : " + status.rawValue()); - } - - Object result = job.result(); - if (null == result) { - throw new RuntimeException("Job has finished with no results"); - } - - String out = result.toString(); - return out; - }catch (CompletionException | ExecutionException | InterruptedException ex){ - throw new RuntimeException("Call for the job result failed", ex); - } - } - - /** - * If job status is FAILURE returns the list of errors encoutered - * - * @return List of Errors - */ - public List errors() { - //TODO: - return new ArrayList(); - } -} diff --git a/src/main/java/com/indico/jobs/JobOptions.java b/src/main/java/com/indico/jobs/JobOptions.java deleted file mode 100644 index eacf902..0000000 --- a/src/main/java/com/indico/jobs/JobOptions.java +++ /dev/null @@ -1,25 +0,0 @@ -package com.indico.jobs; - -/** - * Configuration parameters to modify how async jobs are handled - */ -public class JobOptions { - public final int priority; - - public static class Builder { - private int priority = 2; - - public Builder priority(int priority) { - this.priority = priority; - return this; - } - - public JobOptions build() { - return new JobOptions(this); - } - } - - private JobOptions(Builder builder) { - this.priority = builder.priority; - } -} \ No newline at end of file diff --git a/src/main/java/com/indico/jobs/JobQuery.java b/src/main/java/com/indico/jobs/JobQuery.java deleted file mode 100644 index 93c4293..0000000 --- a/src/main/java/com/indico/jobs/JobQuery.java +++ /dev/null @@ -1,48 +0,0 @@ -package com.indico.jobs; - -import com.apollographql.apollo.ApolloClient; -import java.util.List; - -import com.indico.IndicoClient; -import com.indico.Query; - -public class JobQuery implements Query { - - private String id; - private final IndicoClient indicoClient; - - public JobQuery(IndicoClient indicoClient) { - this.indicoClient = indicoClient; - } - - /** - * Use to query job by id - * - * @param id job id - * @return JobQuery - */ - public JobQuery id(String id) { - this.id = id; - - return this; - } - - /** - * Returns Job - * - * @return Job - */ - public Job query() { - return new Job(this.indicoClient, this.id); - } - - /** - * Refresh the Job - * - * @param obj Job - * @return Job - */ - public Job refresh(Job obj) { - return obj; - } -} diff --git a/src/main/java/com/indico/mutation/DocumentExtraction.java b/src/main/java/com/indico/mutation/DocumentExtraction.java deleted file mode 100644 index d26ca48..0000000 --- a/src/main/java/com/indico/mutation/DocumentExtraction.java +++ /dev/null @@ -1,111 +0,0 @@ -package com.indico.mutation; - -import com.apollographql.apollo.ApolloCall; -import com.apollographql.apollo.api.Error; -import com.apollographql.apollo.api.Response; -import com.indico.Async; -import com.indico.DocumentExtractionGraphQLMutation; -import com.indico.IndicoClient; -import com.indico.Mutation; -import com.indico.jobs.Job; -import com.indico.storage.UploadFile; -import com.indico.type.FileInput; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import java.util.concurrent.CompletionException; -import java.util.concurrent.ExecutionException; - -import org.json.JSONArray; -import org.json.JSONObject; - -public class DocumentExtraction implements Mutation> { - - private List files; - private JSONObject jsonConfig; - private final IndicoClient indicoClient; - - public DocumentExtraction(IndicoClient indicoClient) { - this.indicoClient = indicoClient; - } - - /** - * Files to extract - * - * @param files File paths - * @return DocumentExtraction - */ - public DocumentExtraction files(List files) { - this.files = files; - this.jsonConfig = new JSONObject(); - this.jsonConfig.put("preset_config", "simple"); - return this; - } - - /** - * JSON configuration for extraction - * - * @param jsonConfig JSON config - * @return DocumentExtraction - */ - public DocumentExtraction jsonConfig(JSONObject jsonConfig) { - this.jsonConfig = jsonConfig; - return this; - } - - /** - * Executes request and returns Jobs - * - * @return Job List - */ - @Override - public List execute() { - JSONArray fileMetadata; - List files = new ArrayList<>(); - try { - fileMetadata = this.upload(this.files); - for (Object f : fileMetadata) { - JSONObject uploadMeta = (JSONObject) f; - JSONObject meta = new JSONObject(); - meta.put("name", uploadMeta.getString("name")); - meta.put("path", uploadMeta.getString("path")); - meta.put("upload_type", uploadMeta.getString("upload_type")); - FileInput input = FileInput.builder().filename(((JSONObject) f).getString("name")).filemeta(meta).build(); - files.add(input); - } - } catch (IOException e) { - throw new RuntimeException(e.getMessage(), e.fillInStackTrace()); - } - try { - ApolloCall apolloCall = indicoClient.apolloClient.mutate(DocumentExtractionGraphQLMutation.builder() - .files(files) - .jsonConfig(this.jsonConfig) - .build()); - - Response response = (Response) Async.executeSync(apolloCall).get(); - if (response.hasErrors()) { - StringBuilder errors = new StringBuilder(); - for (Error err : response.errors()) { - errors.append(err.toString() + "\n"); - } - String msg = errors.toString(); - throw new RuntimeException("Failed to extract documents due to following error: \n" + msg); - } - List jobIds = response.data().documentExtraction().jobIds(); - List jobs = new ArrayList<>(); - for (String id : jobIds) { - Job job = new Job(this.indicoClient, id); - jobs.add(job); - } - - return jobs; - }catch (CompletionException | ExecutionException | InterruptedException ex){ - throw new RuntimeException("Call to DocumentExtraction failed", ex); - } - } - - private JSONArray upload(List filePaths) throws IOException { - UploadFile uploadRequest = new UploadFile(this.indicoClient); - return uploadRequest.filePaths(filePaths).call(); - } -} diff --git a/src/main/java/com/indico/mutation/DocumentExtraction.kt b/src/main/java/com/indico/mutation/DocumentExtraction.kt new file mode 100644 index 0000000..7d42151 --- /dev/null +++ b/src/main/java/com/indico/mutation/DocumentExtraction.kt @@ -0,0 +1,77 @@ +package com.indico.mutation + +import com.expediagroup.graphql.client.jackson.types.OptionalInput +import com.indico.IndicoKtorClient +import com.indico.exceptions.IndicoMutationException +import com.indico.graphql.DocumentExtractionGraphQL +import com.indico.graphql.inputs.FileInput +import com.indico.query.Job +import org.json.JSONObject +import java.util.ArrayList +import kotlin.RuntimeException + +class DocumentExtraction(private val indicoClient: IndicoKtorClient) : Mutation?, DocumentExtractionGraphQL.Result>() { + private var files: List? = null + private var jsonConfig: JSONObject? = null + + /** + * Files to extract + * + * @param files File paths + * @return DocumentExtraction + */ + fun files(files: List?): DocumentExtraction { + this.files = files + jsonConfig = JSONObject() + jsonConfig!!.put("preset_config", "simple") + return this + } + + /** + * JSON configuration for extraction + * + * @param jsonConfig JSON config + * @return DocumentExtraction + */ + fun jsonConfig(jsonConfig: JSONObject?): DocumentExtraction { + this.jsonConfig = jsonConfig + return this + } + + /** + * Executes request and returns a list of Jobs + * + * @return List + */ + override fun execute(): List { + val files: MutableList = ArrayList() + try { + files.addAll(processFiles(this.files!!, this.indicoClient)) + } catch (ex: RuntimeException) { + throw IndicoMutationException("Failed to upload files for extraction", ex) + } + return try { + + val call = DocumentExtractionGraphQL( + variables = DocumentExtractionGraphQL.Variables( + files = files, + jsonConfig = OptionalInput.Defined(this.jsonConfig.toString()) + ) + ); + + val response = this.indicoClient.execute(call) + + handleErrors(response) + val jobIds = response.data!!.documentExtraction!!.jobIds + val jobs: MutableList = ArrayList() + for (id in jobIds!!) { + val job = Job(indicoClient, id = id!!, errors = null) + jobs.add(job) + } + jobs + } catch (ex: RuntimeException) { + throw IndicoMutationException("Call to DocumentExtraction failed", ex) + } + } + +} \ No newline at end of file diff --git a/src/main/java/com/indico/mutation/GenerateSubmissionResult.java b/src/main/java/com/indico/mutation/GenerateSubmissionResult.java deleted file mode 100644 index d440d17..0000000 --- a/src/main/java/com/indico/mutation/GenerateSubmissionResult.java +++ /dev/null @@ -1,49 +0,0 @@ -package com.indico.mutation; - -import com.apollographql.apollo.ApolloCall; -import com.apollographql.apollo.api.Response; -import com.indico.Async; -import com.indico.CreateSubmissionResultsGraphQLMutation; -import com.indico.IndicoClient; -import com.indico.Mutation; -import com.indico.entity.Submission; -import com.indico.jobs.Job; - -import java.util.concurrent.CompletionException; -import java.util.concurrent.ExecutionException; - -public class GenerateSubmissionResult implements Mutation { - private final IndicoClient client; - private int submissionId; - private boolean retrieved; - - public GenerateSubmissionResult(IndicoClient client) { - this.client = client; - } - - public GenerateSubmissionResult submission(int submissionId) { - this.submissionId = submissionId; - return this; - } - - public GenerateSubmissionResult submission(Submission submission) { - this.submissionId = submission.id; - return this; - } - - @Override - public Job execute() { - try{ - ApolloCall apolloCall = this.client.apolloClient.mutate(CreateSubmissionResultsGraphQLMutation.builder() - .submissionId(this.submissionId) - .build()); - - Response response = Async.executeSync(apolloCall).get(); - CreateSubmissionResultsGraphQLMutation.SubmissionResults submissionResults = response.data().submissionResults(); - String jobId = submissionResults.jobId(); - return new Job(this.client, jobId); } - catch (CompletionException | ExecutionException | InterruptedException ex){ - throw new RuntimeException("Call to generate the submission result failed", ex); - } - } -} diff --git a/src/main/java/com/indico/mutation/GenerateSubmissionResult.kt b/src/main/java/com/indico/mutation/GenerateSubmissionResult.kt new file mode 100644 index 0000000..1b11a6c --- /dev/null +++ b/src/main/java/com/indico/mutation/GenerateSubmissionResult.kt @@ -0,0 +1,47 @@ +package com.indico.mutation + +import com.indico.IndicoClient +import com.indico.entity.Submission +import com.indico.exceptions.IndicoMutationException +import com.indico.graphql.CreateSubmissionResultsGraphQL +import com.indico.query.Job + +class GenerateSubmissionResult(private val client: IndicoClient) : Mutation() { + private var submissionId = 0 + + /** + * Set the submission ID to fetch the result for. + */ + fun submission(submissionId: Int): GenerateSubmissionResult { + this.submissionId = submissionId + return this + } + + @Deprecated("Please add the submission id instead.") + /** + * Set the submission object to generate submission result for. + */ + fun submission(submission: Submission): GenerateSubmissionResult { + submissionId = submission.id + return this + } + + override fun execute(): Job? { + return try { + val call = CreateSubmissionResultsGraphQL(variables = + CreateSubmissionResultsGraphQL.Variables( + submissionId = this.submissionId + )) + + val response = this.client.execute(call) + handleErrors(response) + val submissionResults = response.data?.submissionResults?: + throw IndicoMutationException("Failed to generate submission results, no submission results returned.") + val jobId: String = submissionResults.jobId!! + Job(client, id = jobId, errors = emptyList()) + } catch (ex: RuntimeException) { + throw IndicoMutationException("Call to generate the submission result failed", ex) + } + } + +} \ No newline at end of file diff --git a/src/main/java/com/indico/mutation/ModelGroupLoad.java b/src/main/java/com/indico/mutation/ModelGroupLoad.java deleted file mode 100644 index 76118da..0000000 --- a/src/main/java/com/indico/mutation/ModelGroupLoad.java +++ /dev/null @@ -1,68 +0,0 @@ -package com.indico.mutation; - -import com.apollographql.apollo.ApolloCall; -import com.apollographql.apollo.ApolloClient; -import com.apollographql.apollo.api.Response; - -import com.indico.Async; -import com.indico.IndicoClient; -import com.indico.Mutation; -import com.indico.LoadModelGraphQLMutation; -import com.indico.entity.ModelGroup; - -import java.util.concurrent.CompletionException; -import java.util.concurrent.ExecutionException; - -public class ModelGroupLoad implements Mutation { - - private int modelId; - private final IndicoClient indicoClient; - private final int maxRetries; - - public ModelGroupLoad(IndicoClient indicoClient) { - this.indicoClient = indicoClient; - this.maxRetries = this.indicoClient.config.maxRetries; - } - - /** - * Use to load ModelGroup - * - * @param modelGroup ModelGroup - * @return ModelGroupLoad - */ - public ModelGroupLoad modelGroup(ModelGroup modelGroup) { - modelId = modelGroup.selectedModel.id; - return this; - } - - /** - * Use to load ModelGroup by id - * - * @param modelId Model id - * @return ModelGroupLoad - */ - public ModelGroupLoad modelId(int modelId) { - this.modelId = modelId; - return this; - } - - /** - * Executes request and returns load status - * - * @return Load status - */ - @Override - public String execute() { - try { - ApolloCall apolloCall = this.indicoClient.apolloClient.mutate(LoadModelGraphQLMutation.builder() - .model_id(modelId) - .build()); - Response response = Async.executeSync(apolloCall).get(); - String status = response.data().modelLoad().status(); - return status; - - } catch (CompletionException | ExecutionException | InterruptedException ex) { - throw new RuntimeException("Call to load model group failed", ex); - } - } -} diff --git a/src/main/java/com/indico/mutation/ModelGroupLoad.kt b/src/main/java/com/indico/mutation/ModelGroupLoad.kt new file mode 100644 index 0000000..e0edacd --- /dev/null +++ b/src/main/java/com/indico/mutation/ModelGroupLoad.kt @@ -0,0 +1,55 @@ +package com.indico.mutation + + +import com.indico.IndicoKtorClient +import com.indico.entity.ModelGroup +import com.indico.exceptions.IndicoMutationException +import com.indico.graphql.LoadModelGraphQL + +/** + * Load model group information. + */ +class ModelGroupLoad(private val indicoClient: IndicoKtorClient) : Mutation() { + private var modelId = 0 + + @Deprecated("Please add model group id directly.") + /** + * Add model group to load + * + * @param modelGroup ModelGroup + * @return ModelGroupLoad + */ + fun modelGroup(modelGroup: ModelGroup): ModelGroupLoad { + modelId = modelGroup.selectedModel.id + return this + } + + /** + * Add model id of the model to fetch + * + * @param modelId Model id + * @return ModelGroupLoad + */ + fun modelId(modelId: Int): ModelGroupLoad { + this.modelId = modelId + return this + } + + /** + * Executes request and returns load status + * + * @return Load status + */ + override fun execute(): String? { + return try { + val call = LoadModelGraphQL(variables = LoadModelGraphQL.Variables( + model_id = this.modelId + )) + val response = indicoClient.execute(call) + response.data?.modelLoad?.status?: + throw IndicoMutationException("Could not fetch status for $modelId") + } catch (ex: RuntimeException) { + throw IndicoMutationException("Call to load model group failed", ex) + } + } +} \ No newline at end of file diff --git a/src/main/java/com/indico/mutation/ModelGroupPredict.java b/src/main/java/com/indico/mutation/ModelGroupPredict.java deleted file mode 100644 index eee74e0..0000000 --- a/src/main/java/com/indico/mutation/ModelGroupPredict.java +++ /dev/null @@ -1,94 +0,0 @@ -package com.indico.mutation; - -import java.util.List; -import java.util.concurrent.CompletionException; -import java.util.concurrent.ExecutionException; - -import com.apollographql.apollo.ApolloCall; -import com.apollographql.apollo.ApolloClient; -import com.apollographql.apollo.api.Response; - -import com.indico.IndicoClient; -import com.indico.jobs.Job; -import com.indico.jobs.JobOptions; -import com.indico.Async; -import com.indico.Mutation; -import com.indico.entity.ModelGroup; -import com.indico.PredictModelGraphQLMutation; - -public class ModelGroupPredict implements Mutation { - - private int modelId; - private List data; - private JobOptions jobOptions; - private final IndicoClient indicoClient; - - public ModelGroupPredict(IndicoClient indicoClient) { - this.indicoClient = indicoClient; - } - - /** - * Use to predict ModelGroup - * - * @param modelGroup ModelGroup - * @return ModelGroupPredict - */ - public ModelGroupPredict modelGroup(ModelGroup modelGroup) { - modelId = modelGroup.selectedModel.id; - return this; - } - - /** - * Use to predict ModelGroup by id - * - * @param modelId Model id - * @return ModelGroupPredict - */ - public ModelGroupPredict modelId(int modelId) { - this.modelId = modelId; - return this; - } - - /** - * Data to predict - * - * @param data Data - * @return ModelGroupPredict - */ - public ModelGroupPredict data(List data) { - this.data = data; - return this; - } - - /** - * Job Options for Job - * - * @param jobOptions Job options - * @return ModeGroupPredict - */ - public ModelGroupPredict jobOptions(JobOptions jobOptions) { - this.jobOptions = jobOptions; - return this; - } - - /** - * Executes request and returns job - * - * @return Job - */ - @Override - public Job execute() { - try { - ApolloCall apolloCall = this.indicoClient.apolloClient.mutate(PredictModelGraphQLMutation.builder() - .modelId(modelId) - .data(data) - .build()); - Response response = Async.executeSync(apolloCall).get(); - String jobId = response.data().modelPredict().jobId(); - return new Job(this.indicoClient,jobId); }catch (CompletionException | ExecutionException | InterruptedException ex){ - throw new RuntimeException("Call for the job result failed", ex); - } - - - } -} diff --git a/src/main/java/com/indico/mutation/ModelGroupPredict.kt b/src/main/java/com/indico/mutation/ModelGroupPredict.kt new file mode 100644 index 0000000..12718d8 --- /dev/null +++ b/src/main/java/com/indico/mutation/ModelGroupPredict.kt @@ -0,0 +1,69 @@ +package com.indico.mutation + +import com.indico.IndicoKtorClient +import com.indico.entity.ModelGroup +import com.indico.exceptions.IndicoMutationException +import com.indico.graphql.PredictModelGraphQL +import com.indico.query.Job + +class ModelGroupPredict(private val indicoClient: IndicoKtorClient) : Mutation() { + private var modelId = 0 + private var data: List = emptyList() + + /** + * Use to predict ModelGroup + * + * @param modelGroup ModelGroup + * @return ModelGroupPredict + */ + fun modelGroup(modelGroup: ModelGroup): ModelGroupPredict { + modelId = modelGroup.selectedModel.id + return this + } + + /** + * Use to predict ModelGroup by id + * + * @param modelId Model id + * @return ModelGroupPredict + */ + fun modelId(modelId: Int): ModelGroupPredict { + this.modelId = modelId + return this + } + + /** + * Data to predict + * + * @param data Data + * @return ModelGroupPredict + */ + fun data(data: List): ModelGroupPredict { + this.data = data + return this + } + + /** + * Executes request and returns job + * + * @return Job + */ + override fun execute(): Job? { + return try { + val call = PredictModelGraphQL( + variables = PredictModelGraphQL.Variables( + modelId = this.modelId, + data = this.data + ) + ) + + val response = indicoClient.execute(call) + val jobId: String = response.data?.modelPredict?.jobId?: + throw IndicoMutationException("Error retrieving job id for model group predict") + Job(indicoClient, id = jobId, errors = emptyList()) + } catch (ex: RuntimeException) { + throw IndicoMutationException("Call for Model Group Predict failed", ex) + } + } + +} \ No newline at end of file diff --git a/src/main/java/com/indico/mutation/Mutation.kt b/src/main/java/com/indico/mutation/Mutation.kt new file mode 100644 index 0000000..393d833 --- /dev/null +++ b/src/main/java/com/indico/mutation/Mutation.kt @@ -0,0 +1,88 @@ +package com.indico.mutation + +import com.expediagroup.graphql.client.jackson.types.OptionalInput +import com.expediagroup.graphql.client.types.GraphQLClientResponse +import com.indico.IndicoClient +import com.indico.exceptions.IndicoMutationException +import com.indico.graphql.inputs.FileInput +import com.indico.storage.UploadFile +import com.indico.storage.UploadStream +import org.apache.logging.log4j.LogManager +import org.apache.logging.log4j.Logger +import org.json.JSONArray +import org.json.JSONObject +import java.lang.StringBuilder +import java.util.ArrayList + +sealed class Mutation(private val logger: Logger? = LogManager.getLogger( + Mutation::class.java)) { + /** + * Executes the graphql query and returns the results as a specific type + * + * @return result of query of type T + */ + abstract fun execute(): T? + + /** + * Raises IndicoMutationError if there are errors. + */ + protected fun handleErrors(response: GraphQLClientResponse) { + if (response.errors != null && response.errors!!.isNotEmpty()) { + val errors = StringBuilder() + for (err in response.errors!!.asIterable()) { + errors.append(err.toString() + "\n") + } + logger?.error("An error was encountered querying the server $errors") + throw IndicoMutationException(errors.toString()) + } + } + + protected fun processFiles(fileList: List, client: IndicoClient): List{ + val files: MutableList = ArrayList() + return try { + logger?.trace("Uploading files to server $fileList") + val fileMetadata = uploadFiles(fileList, client) + for (f in fileMetadata) { + val uploadMeta = f as JSONObject + val meta = JSONObject() + meta.put("name", uploadMeta.getString("name")) + meta.put("path", uploadMeta.getString("path")) + meta.put("upload_type", uploadMeta.getString("upload_type")) + val input = FileInput(filename = OptionalInput.Defined(f.getString("name")), filemeta = OptionalInput.Defined(meta.toString())) + files.add(input) + } + files + } catch (ex: RuntimeException){ + throw IndicoMutationException("Failed to upload files for extraction", ex) + } + } + + protected fun processStreams(fileList: Map?, client: IndicoClient): List{ + val files: MutableList = ArrayList() + return try { + val fileMetadata = uploadBytes(fileList, client) + for (f in fileMetadata) { + val uploadMeta = f as JSONObject + val meta = JSONObject() + meta.put("name", uploadMeta.getString("name")) + meta.put("path", uploadMeta.getString("path")) + meta.put("upload_type", uploadMeta.getString("upload_type")) + val input = FileInput(filename = OptionalInput.Defined(f.getString("name")), filemeta = OptionalInput.Defined(meta.toString())) + files.add(input) + } + files + } catch (ex: RuntimeException){ + logger?.error("Failed to upload files: $ex" ) + throw IndicoMutationException("Failed to upload files for extraction", ex) + } + } + private fun uploadFiles(filePaths: List?, client: IndicoClient): JSONArray { + val uploadRequest = UploadFile(client) + return uploadRequest.filePaths(filePaths).call()!! + } + + private fun uploadBytes(stream: Map?, client: IndicoClient): JSONArray { + val uploadRequest = UploadStream(client) + return uploadRequest.byteStream(stream).call()!! + } +} \ No newline at end of file diff --git a/src/main/java/com/indico/mutation/SubmissionResult.java b/src/main/java/com/indico/mutation/SubmissionResult.java deleted file mode 100644 index e6aa8c2..0000000 --- a/src/main/java/com/indico/mutation/SubmissionResult.java +++ /dev/null @@ -1,83 +0,0 @@ -package com.indico.mutation; - -import com.indico.IndicoClient; -import com.indico.Mutation; -import com.indico.entity.Submission; -import com.indico.jobs.Job; -import com.indico.query.GetSubmission; -import com.indico.type.SubmissionStatus; - -import java.util.concurrent.CompletionException; -import java.util.concurrent.ExecutionException; - -public class SubmissionResult implements Mutation { - private final IndicoClient client; - private int submissionId; - private SubmissionStatus checkStatus; - - public SubmissionResult(IndicoClient client) { - this.client = client; - } - - /** - * Id of the submission - * @param submissionId submission Id - * @return SubmissionResult - */ - public SubmissionResult submission(int submissionId) { - this.submissionId = submissionId; - return this; - } - - public SubmissionResult submission(Submission submission) { - this.submissionId = submission.id; - return this; - } - - public SubmissionResult checkStatus(SubmissionStatus checkStatus) { - this.checkStatus = checkStatus; - return this; - } - - /** - * Generate a result file for a Submission - * @return Job - */ - @Override - public Job execute() { - try{ - GetSubmission getSubmission = new GetSubmission(this.client).submissionId(this.submissionId); - Submission submission = getSubmission.query(); - while(!statusCheck(submission.status)) { - submission = getSubmission.query(); - try { - Thread.sleep(1000); - } catch(InterruptedException exc) { - throw new RuntimeException(exc.getMessage(), exc.fillInStackTrace()); - } - } - - if(!statusCheck(submission.status)) { - throw new RuntimeException("Request timed out"); - } - else if(submission.status.equals(SubmissionStatus.$UNKNOWN)) { - throw new RuntimeException("Submission " + this.submissionId + " does not meet status requirements"); - } - - GenerateSubmissionResult generateSubmissionResult = new GenerateSubmissionResult(this.client) - .submission(submission); - Job job = generateSubmissionResult.execute(); - return job; - } - catch (CompletionException ex){ - throw new RuntimeException("Call to get submission result failed", ex); - } - } - - private boolean statusCheck(SubmissionStatus status) { - if(checkStatus != null) { - return status.equals(checkStatus); - } - return !status.equals(SubmissionStatus.PROCESSING); - } -} diff --git a/src/main/java/com/indico/mutation/SubmissionResult.kt b/src/main/java/com/indico/mutation/SubmissionResult.kt new file mode 100644 index 0000000..ea98fcd --- /dev/null +++ b/src/main/java/com/indico/mutation/SubmissionResult.kt @@ -0,0 +1,88 @@ +package com.indico.mutation + + +import com.indico.IndicoClient +import com.indico.RetryInterceptor +import com.indico.entity.Submission +import com.indico.exceptions.IndicoBaseException +import com.indico.exceptions.IndicoMutationException +import com.indico.exceptions.IndicoQueryException +import com.indico.graphql.CreateSubmissionResultsGraphQL +import com.indico.graphql.enums.SubmissionStatus as GraphQlSubmissionStatus +import com.indico.query.GetSubmission +import com.indico.query.Job +import com.indico.type.SubmissionStatus +import org.apache.logging.log4j.Level +import org.apache.logging.log4j.LogManager +import org.apache.logging.log4j.Logger + +class SubmissionResult(private val client: IndicoClient, private val logger: Logger? = LogManager.getLogger( + SubmissionResult::class.java +)) : Mutation() { + private var submissionId = 0 + private var checkStatus: SubmissionStatus? = null + + /** + * Id of the submission + * @param submissionId submission Id + * @return SubmissionResult + */ + fun submission(submissionId: Int): SubmissionResult { + this.submissionId = submissionId + return this + } + + fun submission(submission: Submission): SubmissionResult { + submissionId = submission.id + return this + } + + fun checkStatus(checkStatus: SubmissionStatus?): SubmissionResult { + this.checkStatus = checkStatus + return this + } + + /** + * Generate a result file for a Submission + * @return Job + */ + override fun execute(): Job? { + return try { + val getSubmission = GetSubmission(client).submissionId(submissionId) + var submission: Submission? = getSubmission.query()?: + throw IndicoQueryException("Could not find submission with this id.") + while (!statusCheck(submission!!.status)) { + submission = getSubmission.query() + try { + Thread.sleep(1000) + } catch (exc: InterruptedException) { + throw IndicoMutationException("Interrupted while waiting for submission", exc) + } + } + if (!statusCheck(submission.status)) { + logger?.error("Request timed out while trying to fetch for the status update") + throw IndicoMutationException("Request timed out") + } else if (submission.status == null) { + logger?.error("Submission status returned an unknown value.") + throw IndicoMutationException("Submission $submissionId does not meet status requirements (unknown status)") + } + val generateSubmissionResult: GenerateSubmissionResult = GenerateSubmissionResult(client) + .submission(submissionId) + generateSubmissionResult.execute() + } catch(ex: IndicoBaseException){ + logger?.error(ex) + throw ex + } + catch (ex: RuntimeException) { + logger?.error(ex) + throw IndicoMutationException("Call to get submission result failed", ex) + } + } + + private fun statusCheck(status: SubmissionStatus): Boolean { + return if (checkStatus != null) { + status == checkStatus + } else status != SubmissionStatus.PROCESSING + } + +} \ No newline at end of file diff --git a/src/main/java/com/indico/mutation/UpdateSubmission.java b/src/main/java/com/indico/mutation/UpdateSubmission.java deleted file mode 100644 index cee88fb..0000000 --- a/src/main/java/com/indico/mutation/UpdateSubmission.java +++ /dev/null @@ -1,71 +0,0 @@ -package com.indico.mutation; - -import com.apollographql.apollo.ApolloCall; -import com.apollographql.apollo.api.Response; -import com.indico.Async; -import com.indico.IndicoClient; -import com.indico.Mutation; -import com.indico.UpdateSubmissionGraphQLMutation; -import com.indico.entity.Submission; - -import java.util.concurrent.CompletionException; -import java.util.concurrent.ExecutionException; - -public class UpdateSubmission implements Mutation { - private final IndicoClient client; - private int submissionId; - private boolean retrieved; - - public UpdateSubmission(IndicoClient client) { - this.client = client; - } - - /** - * Id of the submission to update - * @param id submissionId - * @return UpdateSubmission - */ - public UpdateSubmission submissionId(int id) { - this.submissionId = id; - return this; - } - - /** - * Mark the submission as having been retrieved - * @param retrieved retrieved - * @return UpdateSubmission - */ - public UpdateSubmission retrieved(boolean retrieved) { - this.retrieved = retrieved; - return this; - } - - /** - * Update properties of the Submission object - * @return Submission - */ - @Override - public Submission execute() { - try{ - ApolloCall apolloCall = this.client.apolloClient.mutate(UpdateSubmissionGraphQLMutation.builder() - .submissionId(this.submissionId) - .retrieved(this.retrieved) - .build()); - - Response response = Async.executeSync(apolloCall).get(); - UpdateSubmissionGraphQLMutation.UpdateSubmission submission = response.data().updateSubmission(); - return new Submission.Builder() - .id(submission.id()) - .datasetId(submission.datasetId()) - .workflowId(submission.workflowId()) - .status(submission.status()) - .inputFile(submission.inputFile()) - .inputFilename(submission.inputFilename()) - .resultFile(submission.resultFile()) - .retrieved(submission.retrieved()) - .build(); - }catch (CompletionException | ExecutionException | InterruptedException ex){ - throw new RuntimeException("Call to generate the submission result failed", ex); - } - } -} diff --git a/src/main/java/com/indico/mutation/UpdateSubmission.kt b/src/main/java/com/indico/mutation/UpdateSubmission.kt new file mode 100644 index 0000000..7bc34ff --- /dev/null +++ b/src/main/java/com/indico/mutation/UpdateSubmission.kt @@ -0,0 +1,66 @@ +package com.indico.mutation + +import com.expediagroup.graphql.client.jackson.types.OptionalInput +import com.indico.IndicoClient +import com.indico.entity.Submission +import com.indico.exceptions.IndicoMutationException +import com.indico.graphql.UpdateSubmissionGraphQL +import com.indico.type.SubmissionStatus + +class UpdateSubmission(client: IndicoClient) : Mutation() { + private val client: IndicoClient + private var submissionId = 0 + private var retrieved = false + + /** + * Id of the submission to update + * @param id submissionId + * @return UpdateSubmission + */ + fun submissionId(id: Int): UpdateSubmission { + submissionId = id + return this + } + + /** + * Mark the submission as having been retrieved + * @param retrieved retrieved + * @return UpdateSubmission + */ + fun retrieved(retrieved: Boolean): UpdateSubmission { + this.retrieved = retrieved + return this + } + + /** + * Update properties of the Submission object + * @return Submission + */ + override fun execute(): Submission? { + return try { + val call = UpdateSubmissionGraphQL(UpdateSubmissionGraphQL.Variables( + submissionId = this.submissionId, + retrieved = OptionalInput.Defined(this.retrieved) + )) + val response = client.execute(call) + handleErrors(response) + val submission = response.data!!.updateSubmission!! + Submission.Builder() + .id(submission.id!!) + .datasetId(submission.datasetId!!) + .workflowId(submission.workflowId!!) + .status(submission.status?.toString()?.let { SubmissionStatus.valueOf(it) }) + .inputFile(submission.inputFile!!) + .inputFilename(submission.inputFilename!!) + .resultFile(submission.resultFile!!) + .retrieved(submission.retrieved!!) + .build() + } catch (ex: RuntimeException) { + throw IndicoMutationException("Call to generate the submission result failed", ex) + } + } + + init { + this.client = client + } +} \ No newline at end of file diff --git a/src/main/java/com/indico/mutation/WorkflowJob.java b/src/main/java/com/indico/mutation/WorkflowJob.java deleted file mode 100644 index 0a6e098..0000000 --- a/src/main/java/com/indico/mutation/WorkflowJob.java +++ /dev/null @@ -1,106 +0,0 @@ -package com.indico.mutation; - -import com.apollographql.apollo.ApolloCall; -import com.apollographql.apollo.api.Error; -import com.apollographql.apollo.api.Response; -import com.indico.Async; -import com.indico.IndicoClient; -import com.indico.Mutation; -import com.indico.WorkflowJobGraphQLMutation; -import com.indico.jobs.Job; -import com.indico.storage.UploadFile; -import com.indico.type.FileInput; -import org.json.JSONArray; -import org.json.JSONObject; - -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -import java.util.concurrent.CompletionException; -import java.util.concurrent.ExecutionException; - -public class WorkflowJob implements Mutation> { - - private final IndicoClient client; - private List files; - private int id; - - public WorkflowJob(IndicoClient client) { - this.client = client; - } - - /** - * List of local file paths to submit - * @param files File paths - * @return WorkflowJob - */ - public WorkflowJob files(List files) { - this.files = files; - return this; - } - - /** - * Id of workflow to submit files to - * @param id Workflow Id - * @return WorkflowSubmission - */ - public WorkflowJob workflowId(int id) { - this.id = id; - return this; - } - - /** - * Executes request and returns Job - * @return Job - */ - @Override - public List execute() { - JSONArray fileMetadata; - List files = new ArrayList<>(); - try { - fileMetadata = this.upload(this.files); - for (Object f : fileMetadata) { - JSONObject uploadMeta = (JSONObject) f; - JSONObject meta = new JSONObject(); - meta.put("name", uploadMeta.getString("name")); - meta.put("path", uploadMeta.getString("path")); - meta.put("upload_type", uploadMeta.getString("upload_type")); - FileInput input = FileInput.builder().filename(((JSONObject) f).getString("name")).filemeta(meta).build(); - files.add(input); - } - } catch (IOException e) { - throw new RuntimeException(e.getMessage(), e.fillInStackTrace()); - } - try{ - ApolloCall apolloCall = this.client.apolloClient.mutate(WorkflowJobGraphQLMutation.builder() - .files(files) - .workflowId(this.id) - .build()); - - Response response = Async.executeSync(apolloCall).get(); - if (response.hasErrors()) { - StringBuilder errors = new StringBuilder(); - for (Error err : response.errors()) { - errors.append(err.toString() + "\n"); - } - String msg = errors.toString(); - throw new RuntimeException("Failed to submit workflow job due to following error: \n" + msg); - } - WorkflowJobGraphQLMutation.WorkflowSubmission workflowSubmission = response.data().workflowSubmission(); - List jobIds = workflowSubmission.jobIds(); - if(jobIds.isEmpty()) { - throw new RuntimeException("Failed to submit to workflow " + this.id); - } - List jobs = new ArrayList<>(); - jobIds.forEach(jobId -> jobs.add(new Job(this.client, jobId))); - return jobs; - }catch (CompletionException | ExecutionException | InterruptedException ex){ - throw new RuntimeException("Call to workflow job failed", ex); - } - } - - private JSONArray upload(List filePaths) throws IOException { - UploadFile uploadRequest = new UploadFile(this.client); - return uploadRequest.filePaths(filePaths).call(); - } -} diff --git a/src/main/java/com/indico/mutation/WorkflowSubmission.java b/src/main/java/com/indico/mutation/WorkflowSubmission.java deleted file mode 100644 index 30217b7..0000000 --- a/src/main/java/com/indico/mutation/WorkflowSubmission.java +++ /dev/null @@ -1,158 +0,0 @@ -package com.indico.mutation; - -import com.apollographql.apollo.ApolloCall; -import com.apollographql.apollo.api.Error; -import com.apollographql.apollo.api.Response; -import com.indico.Async; -import com.indico.IndicoClient; -import com.indico.Mutation; -import com.indico.WorkflowSubmissionGraphQLMutation; -import com.indico.storage.UploadFile; -import com.indico.storage.UploadStream; -import com.indico.type.FileInput; - - -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; -import org.json.JSONArray; -import org.json.JSONObject; - -import java.io.IOException; -import java.util.*; -import java.util.concurrent.CompletionException; -import java.util.concurrent.ExecutionException; - - -public class WorkflowSubmission implements Mutation> { - - private final IndicoClient client; - private List files; - private int id; - private UUID duplicationId; - private byte[] stream; - private Map streams; - private final Logger logger = LogManager.getLogger(WorkflowSubmission.class); - - public WorkflowSubmission(IndicoClient client) { - this.client = client; - } - - /** - * List of local file paths to submit - * @param files File paths - * @return WorkflowSubmission - */ - public WorkflowSubmission files(List files) { - this.files = files; - return this; - } - - /** - * - * @param streams Dictionary of String identifiers and byte streams to upload. - * @return - */ - public WorkflowSubmission byteStreams(Map streams){ - this.streams = streams; - return this; - } - - /** - * Id of workflow to submit files to - * @param id Workflow Id - * @return WorkflowSubmission - */ - public WorkflowSubmission workflowId(int id) { - this.id = id; - return this; - } - - /** - * A UUID representing a unique set of files and workflow activity. - * This optional parameter helps the platform detect and prevent duplicate submissions. - * @param id - * @return - */ - public WorkflowSubmission duplicationId(UUID id){ - this.duplicationId = id; - return this; - } - - /** - * Executes request and returns Submissions - * @return Integer List - */ - @Override - public List execute() { - JSONArray fileMetadata; - List files = new ArrayList(); - try { - if(this.files != null) - { - fileMetadata = this.upload(this.files); - for (Object f : fileMetadata) { - JSONObject uploadMeta = (JSONObject) f; - JSONObject meta = new JSONObject(); - meta.put("name", uploadMeta.getString("name")); - meta.put("path", uploadMeta.getString("path")); - meta.put("upload_type", uploadMeta.getString("upload_type")); - FileInput input = FileInput.builder().filename(((JSONObject) f).getString("name")).filemeta(meta).build(); - files.add(input); - } - } - if(this.streams != null){ - fileMetadata = this.uploadBytes(this.streams); - for (Object f : fileMetadata) { - JSONObject uploadMeta = (JSONObject) f; - JSONObject meta = new JSONObject(); - meta.put("name", uploadMeta.getString("name")); - meta.put("path", uploadMeta.getString("path")); - meta.put("upload_type", uploadMeta.getString("upload_type")); - FileInput input = FileInput.builder().filename(((JSONObject) f).getString("name")).filemeta(meta).build(); - files.add(input); - } - } - } catch (IOException e) { - throw new RuntimeException(e.getMessage(), e.fillInStackTrace()); - } - if(this.duplicationId == null){ - this.duplicationId = UUID.randomUUID(); - } - try{ - ApolloCall apolloCall = this.client.apolloClient.mutate(WorkflowSubmissionGraphQLMutation.builder() - .files(files) - .workflowId(this.id) - .duplicationId(this.duplicationId.toString()) - .build()); - - Response response = (Response) Async.executeSync(apolloCall).get(); - if (response.hasErrors()) { - StringBuilder errors = new StringBuilder(); - for (Error err : response.errors()) { - errors.append(err.toString() + "\n"); - } - - String msg = errors.toString(); - logger.error("Errors encountered during submission: " + msg); - throw new RuntimeException("Failed to submit due to following error: \n" + msg); - } - WorkflowSubmissionGraphQLMutation.WorkflowSubmission workflowSubmission = response.data().workflowSubmission(); - if(workflowSubmission.isDuplicateRequest()){ - logger.debug("Duplicate submission sent for submission ids " + workflowSubmission.submissionIds().toString()); - } - return workflowSubmission.submissionIds(); - }catch (CompletionException | ExecutionException | InterruptedException ex){ - throw new RuntimeException("Call to submit submission failed", ex); - } - } - - private JSONArray upload(List filePaths) throws IOException { - UploadFile uploadRequest = new UploadFile(this.client); - return uploadRequest.filePaths(filePaths).call(); - } - - private JSONArray uploadBytes(Map stream) throws IOException { - UploadStream uploadRequest = new UploadStream(this.client); - return uploadRequest.byteStream(stream).call(); - } -} diff --git a/src/main/java/com/indico/mutation/WorkflowSubmission.kt b/src/main/java/com/indico/mutation/WorkflowSubmission.kt new file mode 100644 index 0000000..52ac2f7 --- /dev/null +++ b/src/main/java/com/indico/mutation/WorkflowSubmission.kt @@ -0,0 +1,98 @@ +package com.indico.mutation + +import com.expediagroup.graphql.client.jackson.types.OptionalInput +import com.indico.IndicoClient +import com.indico.exceptions.IndicoMutationException +import com.indico.graphql.WorkflowSubmissionGraphQL +import com.indico.graphql.inputs.FileInput +import org.apache.logging.log4j.LogManager +import org.json.JSONArray +import java.io.IOException +import java.util.* + +class WorkflowSubmission(private val client: IndicoClient) : Mutation?, WorkflowSubmissionGraphQL.Result>() { + private var files: List? = null + private var id = 0 + private var duplicationId: UUID? = null + private var streams: Map? = null + private val logger = LogManager.getLogger(javaClass) + + /** + * List of local file paths to submit + * @param files File paths + * @return WorkflowSubmission + */ + fun files(files: List?): WorkflowSubmission { + this.files = files + return this + } + + /** + * + * @param streams Dictionary of String identifiers and byte streams to upload. + * @return + */ + fun byteStreams(streams: Map?): WorkflowSubmission { + this.streams = streams + return this + } + + /** + * Id of workflow to submit files to + * @param id Workflow Id + * @return WorkflowSubmission + */ + fun workflowId(id: Int): WorkflowSubmission { + this.id = id + return this + } + + /** + * A UUID representing a unique set of files and workflow activity. + * This optional parameter helps the platform detect and prevent duplicate submissions. + * @param id + * @return + */ + fun duplicationId(id: UUID?): WorkflowSubmission { + duplicationId = id + return this + } + + /** + * Executes request and returns Submissions + * @return Integer List + */ + override fun execute(): List? { + var fileMetadata: JSONArray + val files: MutableList = ArrayList() + try { + if (this.files != null) { + files.addAll(processFiles(this.files!!, client)) + } + if (streams != null) { + files.addAll(processStreams(this.streams!!, client)) + } + } catch (e: IOException) { + throw IndicoMutationException(e.message, e) + } + if (duplicationId == null) { + duplicationId = UUID.randomUUID() + } + return try { + val call = WorkflowSubmissionGraphQL( + WorkflowSubmissionGraphQL.Variables( + files = files, workflowId = id, duplicationId = OptionalInput.Defined(duplicationId.toString()))) + val response = client.execute(call) + handleErrors(response) + val workflowSubmission = response.data!!.workflowSubmission!! + if (workflowSubmission.isDuplicateRequest!!) { + logger.debug( + "Duplicate submission sent for submission ids " + workflowSubmission.submissionIds.toString() + ) + } + workflowSubmission.submissionIds + }catch (ex: java.lang.RuntimeException) { + throw IndicoMutationException("Call to submit submission failed", ex) + } + } +} \ No newline at end of file diff --git a/src/main/java/com/indico/query/GetSubmission.java b/src/main/java/com/indico/query/GetSubmission.java deleted file mode 100644 index 49e3dab..0000000 --- a/src/main/java/com/indico/query/GetSubmission.java +++ /dev/null @@ -1,69 +0,0 @@ -package com.indico.query; - -import com.apollographql.apollo.ApolloCall; -import com.apollographql.apollo.api.Response; -import com.indico.Async; -import com.indico.GetSubmissionGraphQLQuery; -import com.indico.IndicoClient; -import com.indico.Query; -import com.indico.entity.Submission; - -import java.util.concurrent.CompletionException; -import java.util.concurrent.ExecutionException; - -public class GetSubmission implements Query { - private final IndicoClient client; - private int submissionId; - private final int maxRetries; - - public GetSubmission(IndicoClient client) { - this.client = client; - maxRetries = this.client.config.maxRetries; - } - - /** - * Submission Id - * @param id submissionId - * @return GetSubmission - */ - public GetSubmission submissionId(int id) { - this.submissionId = id; - return this; - } - - /** - * Execute the query - * @return Submission - */ - @Override - public Submission query() { - try{ - ApolloCall apolloCall = this.client.apolloClient.query(GetSubmissionGraphQLQuery.builder() - .submissionId(this.submissionId) - .build()); - - Response response = Async.executeSync(apolloCall).get(); - GetSubmissionGraphQLQuery.Submission submission = response.data().submission(); - return new Submission.Builder() - .id(submission.id()) - .datasetId(submission.datasetId()) - .workflowId(submission.workflowId()) - .status(submission.status()) - .inputFile(submission.inputFile()) - .inputFilename(submission.inputFilename()) - .resultFile(submission.resultFile()) - .retrieved(submission.retrieved()) - .build(); - }catch (CompletionException | ExecutionException | InterruptedException ex){ - throw new RuntimeException("Call to get the submission failed", ex); - } - } - - /** - * Refresh the Submission - * @param obj - * @return Submission - */ - @Override - public Submission refresh(Submission obj) { return obj; } -} diff --git a/src/main/java/com/indico/query/GetSubmission.kt b/src/main/java/com/indico/query/GetSubmission.kt new file mode 100644 index 0000000..aa09ea0 --- /dev/null +++ b/src/main/java/com/indico/query/GetSubmission.kt @@ -0,0 +1,63 @@ +package com.indico.query + + +import com.indico.IndicoClient +import com.indico.entity.Submission +import com.indico.exceptions.IndicoQueryException +import com.indico.graphql.GetSubmissionGraphQL +import com.indico.graphql.createsubmissionresultsgraphql.SubmissionResults +import com.indico.type.SubmissionStatus + +class GetSubmission(private val client: IndicoClient) : Query() { + + private var submissionId = 0 + + + /** + * Submission Id + * @param id submissionId + * @return GetSubmission + */ + fun submissionId(id: Int): GetSubmission { + submissionId = id + return this + } + + /** + * Execute the query + * @return Submission + */ + override fun query(): Submission? { + return try { + val call = GetSubmissionGraphQL(GetSubmissionGraphQL.Variables( + submissionId = this.submissionId + )) + + val response = this.client.execute(call) + handleErrors(response) + val submission = response.data?.submission?: return null + Submission.Builder() + .id(submission.id!!) + .datasetId(submission.datasetId!!) + .workflowId(submission.workflowId!!) + .status(submission.status?.toString()?.let { SubmissionStatus.valueOf(it) }) + .inputFile(submission.inputFile) + .inputFilename(submission.inputFilename) + .resultFile(submission.resultFile) + .retrieved(submission.retrieved!!) + .build() + } catch (ex: RuntimeException) { + throw IndicoQueryException("Call to get the submission failed", ex) + } + } + + /** + * Refresh the Submission + * @param obj + * @return Submission + */ + override fun refresh(obj: Submission?): Submission? { + return obj + } + +} \ No newline at end of file diff --git a/src/main/java/com/indico/query/Job.kt b/src/main/java/com/indico/query/Job.kt new file mode 100644 index 0000000..0d477f8 --- /dev/null +++ b/src/main/java/com/indico/query/Job.kt @@ -0,0 +1,84 @@ +package com.indico.query + +import com.indico.IndicoClient +import com.indico.JSON +import com.indico.exceptions.IndicoQueryException +import com.indico.graphql.JobResultGraphQL +import com.indico.type.JobStatus +import com.indico.graphql.jobresultgraphql.Job +import org.json.JSONArray +import org.json.JSONObject +import java.lang.RuntimeException +import java.util.ArrayList +import com.indico.graphql.enums.JobStatus as GraphQlJobStatus + +/** + * Job information + */ +class Job(private val indicoClient: IndicoClient, private val errors: List?, val id: String) { + + /** + * Retrieve job status + * + * @return JobStatus + */ + fun status(): JobStatus { + val result = fetchResult() + return result.status.toString().let {JobStatus.valueOf(it) } + } + + fun resultAsString(): String { + return fetchResult().result.toString() + } + + /** + * Retrieve result. Status must be success or an error will be thrown. + * + * @return JSONObject + */ + fun result(): JSONObject { + val result = fetchResult().result + return JSON(result).asJSONObject() + } + + /** + * Retrieve results. Status must be success or an error will be thrown. + * + * @return JSONArray + */ + fun results(): JSONArray { + val result = fetchResult().result + return JSON(result).asJSONArray() + } + + /** + * Retrieve results as String + * + * @return Result String + */ + private fun fetchResult(): Job { + return try { + val jobsQuery = JobResultGraphQL(JobResultGraphQL.Variables(this.id)) + val jobResult = this.indicoClient.execute(jobsQuery) + if(jobResult.errors != null && jobResult.errors!!.isNotEmpty()){ + throw IndicoQueryException(jobResult.errors!!.joinToString(separator = ",")) + } + val job = jobResult.data!!.job + val status: GraphQlJobStatus? = job?.status + + job!! + } catch (ex: RuntimeException) { + throw IndicoQueryException("Call for the job result failed", ex) + } + } + + + /** + * If job status is FAILURE returns the list of errors encoutered + * + * @return List of Errors + */ + fun errors(): List { + return ArrayList() + } +} \ No newline at end of file diff --git a/src/main/java/com/indico/query/ListSubmissions.java b/src/main/java/com/indico/query/ListSubmissions.java deleted file mode 100644 index acc7d4d..0000000 --- a/src/main/java/com/indico/query/ListSubmissions.java +++ /dev/null @@ -1,108 +0,0 @@ -package com.indico.query; - -import com.apollographql.apollo.ApolloCall; -import com.apollographql.apollo.api.Response; -import com.indico.Async; -import com.indico.IndicoClient; -import com.indico.ListSubmissionsGraphQLQuery; -import com.indico.Query; -import com.indico.entity.Submission; -import com.indico.type.SubmissionFilter; - -import java.util.ArrayList; -import java.util.List; -import java.util.concurrent.CompletionException; -import java.util.concurrent.ExecutionException; - -public class ListSubmissions implements Query> { - private final IndicoClient client; - private List submissionIds; - private List workflowIds; - private SubmissionFilter filters; - private int limit = 1000; - - public ListSubmissions(IndicoClient client) { - this.client = client; - } - - /** - * Submission ids to filter by - * @param ids submissionIds - * @return ListSubmissions - */ - public ListSubmissions submissionIds(List ids) { - this.submissionIds = ids; - return this; - } - - /** - * Workflow ids to filter by - * @param ids workflowIds - * @return ListSubmissions - */ - public ListSubmissions workflowIds(List ids) { - this.workflowIds = ids; - return this; - } - - /** - * Submission attributes to filter by - * @param filters submission filter - * @return ListSubmissions - */ - public ListSubmissions filters(SubmissionFilter filters) { - this.filters = filters; - return this; - } - - /** - * Maximum number of Submissions to return. Defaults to 1000 - * @param limit - * @return ListSubmissions - */ - public ListSubmissions limit(int limit) { - this.limit = limit; - return this; - } - - /** - * Execute the query - * @return Submission List - */ - @Override - public List query() { - try{ - ApolloCall apolloCall = this.client.apolloClient.query(ListSubmissionsGraphQLQuery.builder() - .submissionIds(this.submissionIds) - .workflowIds(this.workflowIds) - .filters(this.filters) - .limit(this.limit) - .build()); - - Response response = Async.executeSync(apolloCall).get(); - - List submissionList = response.data().submissions().submissions(); - ArrayList submissions = new ArrayList<>(); - submissionList.forEach(submission -> submissions.add(new Submission.Builder() - .id(submission.id()) - .datasetId(submission.datasetId()) - .workflowId(submission.workflowId()) - .status(submission.status()) - .inputFile(submission.inputFile()) - .inputFilename(submission.inputFilename()) - .resultFile(submission.resultFile()) - .build())); - return submissions; - }catch (CompletionException | ExecutionException | InterruptedException ex){ - throw new RuntimeException("Call to list the submissions failed", ex); - } - } - - /** - * Refresh the Submission List - * @param obj - * @return Submission List - */ - @Override - public List refresh(List obj) { return obj; } -} diff --git a/src/main/java/com/indico/query/ListSubmissions.kt b/src/main/java/com/indico/query/ListSubmissions.kt new file mode 100644 index 0000000..60e93a2 --- /dev/null +++ b/src/main/java/com/indico/query/ListSubmissions.kt @@ -0,0 +1,150 @@ +package com.indico.query + +import com.expediagroup.graphql.client.jackson.types.OptionalInput +import com.indico.IndicoKtorClient +import com.indico.type.SubmissionFilter +import com.indico.graphql.ListSubmissionsGraphQL +import com.indico.entity.Submission +import com.indico.exceptions.IndicoQueryException +import com.indico.graphql.enums.SubmissionStatus as GraphQlSubmissionStatus +import com.indico.type.SubmissionStatus +import java.util.* +import java.util.function.Consumer +import com.indico.graphql.inputs.SubmissionFilter as GraphQlSubmissionFilter + +class ListSubmissions(private val client: IndicoKtorClient) : + Query?, ListSubmissionsGraphQL.Result>() { + private var submissionIds: List? = null + private var workflowIds: List? = null + private var filters: SubmissionFilter? = null + private var limit = 1000 + + /** + * Submission ids to filter by + * @param ids submissionIds + * @return ListSubmissions + */ + fun submissionIds(ids: List?): ListSubmissions { + submissionIds = ids + return this + } + + /** + * Workflow ids to filter by + * @param ids workflowIds + * @return ListSubmissions + */ + fun workflowIds(ids: List?): ListSubmissions { + workflowIds = ids + return this + } + + /** + * Submission attributes to filter by + * @param filters submission filter + * @return ListSubmissions + */ + fun filters(filters: SubmissionFilter?): ListSubmissions { + this.filters = filters + return this + } + + /** + * Maximum number of Submissions to return. Defaults to 1000 + * @param limit + * @return ListSubmissions + */ + fun limit(limit: Int): ListSubmissions { + this.limit = limit + return this + } + + private fun convertSingleFilter(filter: SubmissionFilter, ands: List? = ArrayList(), ors: List? = ArrayList()): GraphQlSubmissionFilter{ + var retrieved: OptionalInput = OptionalInput.Undefined + var status: OptionalInput = OptionalInput.Undefined + var inputFileName : OptionalInput = OptionalInput.Undefined + if(filter.retrieved != null){ + retrieved = OptionalInput.Defined(filter.retrieved) + } + if(filter.status != null){ + status = OptionalInput.Defined(GraphQlSubmissionStatus.valueOf(filter.status.toString())) + } + if(filter.inputFileName != null){ + inputFileName = OptionalInput.Defined(filter.inputFileName) + } + var optionalAnds: OptionalInput> = OptionalInput.Undefined + var optionalOrs : OptionalInput> = OptionalInput.Undefined + if(ands?.isNotEmpty() == true){ + optionalAnds = OptionalInput.Defined(ands) + } + if(ors?.isNotEmpty() == true){ + optionalOrs = OptionalInput.Defined(ors) + } + return GraphQlSubmissionFilter( + retrieved = retrieved, + status = status, inputFilename = inputFileName, ands = optionalAnds, ors = optionalOrs + + ) + } + private fun convertFilterList(filters: List?): ArrayList { + val filterlist = ArrayList() + filters?.iterator()?.forEach { + filterlist.add( + convertSingleFilter(it) + ) + } + return filterlist + } + private fun convertFilters(): OptionalInput { + val ands = convertFilterList(filters?.ands as List?) + + val ors = convertFilterList(filters?.ors as List?) + val converted = filters?.let { convertSingleFilter(it , ands=ands, ors=ors) } + + return if(converted != null) OptionalInput.Defined(converted) else OptionalInput.Undefined + } + + /** + * Execute the query + * @return Submission List + */ + override fun query(): List { + return try { + + val variables = ListSubmissionsGraphQL.Variables( + submissionIds = if (submissionIds != null) OptionalInput.Defined(submissionIds) else OptionalInput.Undefined, + workflowIds = if (workflowIds?.any() == true) OptionalInput.Defined(workflowIds) else OptionalInput.Undefined, + convertFilters(), OptionalInput.Defined(limit)) + val listSubmissionsGraphQL = ListSubmissionsGraphQL(variables) + val result = client.execute(listSubmissionsGraphQL) + handleErrors(result) + val submissionList = result.data?.submissions?.submissions?: ArrayList() + val submissions = ArrayList() + submissionList.forEach(Consumer { submission: com.indico.graphql.listsubmissionsgraphql.Submission? -> + submissions.add( + Submission.Builder() + .id(submission!!.id!!) + .datasetId(submission.datasetId!!) + .workflowId(submission.workflowId!!) + .status(submission.status?.toString()?.let { SubmissionStatus.valueOf(it) }) + .inputFile(submission.inputFile) + .inputFilename(submission.inputFilename) + .resultFile(submission.resultFile) + .build() + ) + }) + submissions + } catch (ex: RuntimeException) { + throw IndicoQueryException("Call to list the submissions failed", ex) + } + } + + /** + * Refresh the Submission List + * @param obj + * @return Submission List + */ + override fun refresh(obj: List?): List? { + return obj + } +} \ No newline at end of file diff --git a/src/main/java/com/indico/query/ListWorkflows.java b/src/main/java/com/indico/query/ListWorkflows.java deleted file mode 100644 index 68d8b7e..0000000 --- a/src/main/java/com/indico/query/ListWorkflows.java +++ /dev/null @@ -1,75 +0,0 @@ -package com.indico.query; - -import com.apollographql.apollo.ApolloCall; -import com.apollographql.apollo.api.Response; -import com.indico.Async; -import com.indico.IndicoClient; -import com.indico.ListWorkflowsGraphQLQuery; -import com.indico.Query; -import com.indico.entity.Workflow; - -import java.util.ArrayList; -import java.util.List; -import java.util.concurrent.CompletionException; -import java.util.concurrent.ExecutionException; - -public class ListWorkflows implements Query> { - - private List datasetIds; - private List workflowIds; - private final IndicoClient client; - - public ListWorkflows(IndicoClient client) { - this.client = client; - } - - /** - * List of dataset ids to filter by - * @param ids Dataset Ids - * @return ListWorkflows - */ - public ListWorkflows datasetIds(List ids) { - this.datasetIds = ids; - return this; - } - - /** - * List of workflow ids to filter by - * @param ids - * @return ListWorkflows - */ - public ListWorkflows workflowIds(List ids) { - this.workflowIds = ids; - return this; - } - - /** - * Queries the server and returns Workflow List - * @return Workflow List - */ - @Override - public List query() { - try{ - ApolloCall apolloCall = this.client.apolloClient.query(ListWorkflowsGraphQLQuery.builder() - .datasetIds(this.datasetIds) - .workflowIds(this.workflowIds) - .build()); - Response response = Async.executeSync(apolloCall).get(); - List wf = response.data().workflows().workflows(); - List workflows = new ArrayList<>(); - wf.forEach(workflow -> workflows.add(new Workflow.Builder() - .id(workflow.id()) - .name(workflow.name()) - .reviewEnabled(workflow.reviewEnabled()) - .build())); - return workflows; - }catch (CompletionException | ExecutionException | InterruptedException ex){ - throw new RuntimeException("Call to list workflows failed", ex); - } - } - - @Override - public List refresh(List obj) { - return obj; - } -} diff --git a/src/main/java/com/indico/query/ListWorkflows.kt b/src/main/java/com/indico/query/ListWorkflows.kt new file mode 100644 index 0000000..263ce7b --- /dev/null +++ b/src/main/java/com/indico/query/ListWorkflows.kt @@ -0,0 +1,66 @@ +package com.indico.query + +import com.expediagroup.graphql.client.jackson.types.OptionalInput +import com.indico.IndicoClient +import com.indico.entity.Workflow +import com.indico.graphql.ListWorkflowsGraphQL +import java.util.ArrayList + +class ListWorkflows(private val client: IndicoClient) : Query?, ListWorkflowsGraphQL.Result>() { + private var datasetIds: List? = null + private var workflowIds: List? = null + + /** + * List of dataset ids to filter by + * @param ids Dataset Ids + * @return ListWorkflows + */ + fun datasetIds(ids: List?): ListWorkflows { + datasetIds = ids + return this + } + + /** + * List of workflow ids to filter by + * @param ids + * @return ListWorkflows + */ + fun workflowIds(ids: List?): ListWorkflows { + workflowIds = ids + return this + } + + /** + * Queries the server and returns Workflow List + * @return Workflow List + */ + override fun query(): List { + return try { + val call = ListWorkflowsGraphQL(ListWorkflowsGraphQL.Variables( + datasetIds = if (datasetIds != null) OptionalInput.Defined(datasetIds) else OptionalInput.Undefined, + workflowIds = if (workflowIds !=null) OptionalInput.Defined(workflowIds) else OptionalInput.Undefined + + )) + val response = client.execute(call) + handleErrors(response) + val wf = response.data?.workflows?.workflows?: ArrayList() + val workflows: MutableList = ArrayList() + wf.forEach { workflow -> + workflows.add( + Workflow.Builder() + .id(workflow!!.id!!) + .name(workflow.name!!) + .reviewEnabled(workflow.reviewEnabled!!) + .build() + ) + } + workflows + } catch (ex: InterruptedException) { + throw RuntimeException("Call to list workflows failed", ex) + } + } + + override fun refresh(obj: List?): List? { + return obj + } +} \ No newline at end of file diff --git a/src/main/java/com/indico/query/ModelGroupQuery.java b/src/main/java/com/indico/query/ModelGroupQuery.java deleted file mode 100644 index c32354a..0000000 --- a/src/main/java/com/indico/query/ModelGroupQuery.java +++ /dev/null @@ -1,90 +0,0 @@ -package com.indico.query; - -import com.indico.IndicoClient; -import com.indico.entity.ModelGroup; -import java.util.ArrayList; -import java.util.concurrent.CompletionException; -import java.util.concurrent.ExecutionException; - -import com.apollographql.apollo.ApolloCall; -import com.apollographql.apollo.ApolloClient; -import com.apollographql.apollo.api.Response; - -import com.indico.Query; -import com.indico.Async; -import com.indico.ModelGroupGraphQLQuery; -import com.indico.entity.Model; - -public class ModelGroupQuery implements Query { - - private int id; - private String name; - private final IndicoClient indicoClient; - - public ModelGroupQuery(IndicoClient indicoClient) { - this.indicoClient = indicoClient; - } - - /** - * Use to query ModelGroup by id - * - * @param id - * @return ModelGroupQuery - */ - public ModelGroupQuery id(int id) { - this.id = id; - return this; - } - - /** - * Use to query ModelGroup by name - * - * @param name - * @return ModelGroupQuery - */ - public ModelGroupQuery name(String name) { - this.name = name; - return this; - } - - /** - * Queries the server and returns ModelGroup - * - * @return ModelGroup - */ - @Override - public ModelGroup query() { - try{ - ArrayList modelGroupIds = new ArrayList<>(); - modelGroupIds.add(this.id); - ApolloCall apolloCall = this.indicoClient.apolloClient.query(ModelGroupGraphQLQuery.builder() - .modelGroupIds(modelGroupIds) - .build()); - Response response = Async.executeSync(apolloCall).get(); - ModelGroupGraphQLQuery.ModelGroup mg = response.data().modelGroups().modelGroups().get(0); - Model model = new Model.Builder() - .id(mg.selectedModel().id()) - .status(mg.selectedModel().status()) - .build(); - return new ModelGroup.Builder() - .id(mg.id()) - .name(mg.name()) - .status(mg.status()) - .selectedModel(model) - .build(); - }catch (CompletionException | ExecutionException | InterruptedException ex){ - throw new RuntimeException("Call to generate the submission result failed", ex); - } - } - - /** - * Refreshes the ModelGroup Object - * - * @param obj ModelGroup - * @return ModelGroup - */ - @Override - public ModelGroup refresh(ModelGroup obj) { - return obj; - } -} diff --git a/src/main/java/com/indico/query/ModelGroupQuery.kt b/src/main/java/com/indico/query/ModelGroupQuery.kt new file mode 100644 index 0000000..e0308b1 --- /dev/null +++ b/src/main/java/com/indico/query/ModelGroupQuery.kt @@ -0,0 +1,76 @@ +package com.indico.query + +import com.indico.IndicoClient +import com.indico.entity.Model +import com.indico.entity.ModelGroup +import com.indico.exceptions.IndicoQueryException +import com.indico.graphql.ModelGroupGraphQL +import java.util.ArrayList + +class ModelGroupQuery(private val indicoClient: IndicoClient) : Query() { + private var id = 0 + private var name: String? = null + + /** + * Used to query ModelGroup by id + * + * @param id + * @return ModelGroupQuery + */ + fun id(id: Int): ModelGroupQuery { + this.id = id + return this + } + + /** + * Used to query ModelGroup by name + * + * @param name + * @return ModelGroupQuery + */ + fun name(name: String?): ModelGroupQuery { + this.name = name + return this + } + + /** + * Queries the server and returns ModelGroup + * + * @return ModelGroup + */ + override fun query(): ModelGroup? { + return try { + val modelGroupIds = ArrayList() + modelGroupIds.add(id) + val call = ModelGroupGraphQL(ModelGroupGraphQL.Variables( + modelGroupIds = modelGroupIds + )) + val response = indicoClient.execute(call) + handleErrors(response) + val mg = response.data?.modelGroups?.modelGroups?.get(0) ?: return null + val model = Model.Builder() + .id(mg.selectedModel!!.id!!) + .status(mg.selectedModel.status!!) + .build() + ModelGroup.Builder() + .id(mg.id!!) + .name(mg.name!!) + .status(mg.status!!) + .selectedModel(model) + .build() + } catch (ex: RuntimeException) { + throw IndicoQueryException("Call to generate fetch model group query failed", ex) + } + } + + /** + * Refreshes the ModelGroup Object + * + * @param obj ModelGroup + * @return ModelGroup + */ + override fun refresh(obj: ModelGroup?): ModelGroup? { + return obj + } + +} \ No newline at end of file diff --git a/src/main/java/com/indico/query/Query.kt b/src/main/java/com/indico/query/Query.kt new file mode 100644 index 0000000..4c39c11 --- /dev/null +++ b/src/main/java/com/indico/query/Query.kt @@ -0,0 +1,33 @@ +package com.indico.query + +import com.expediagroup.graphql.client.types.GraphQLClientResponse +import com.indico.exceptions.IndicoMutationException +import com.indico.exceptions.IndicoQueryException +import com.indico.mutation.SubmissionResult +import org.apache.logging.log4j.LogManager +import org.apache.logging.log4j.Logger +import java.lang.StringBuilder + +abstract class Query(private val logger: Logger? = LogManager.getLogger( + Query::class.java)) { + /** + * Execute the graphql query and retunrs the results as a specific type + * @return result of query of type T + */ + abstract fun query(): T + @Deprecated("Not supported") + abstract fun refresh(obj: T): T + + /** + * Raises IndicoQueryError if there are errors. + */ + protected fun handleErrors(response: GraphQLClientResponse) { + if (response.errors != null && response.errors!!.isNotEmpty()) { + val errors = StringBuilder() + for (err in response.errors!!.asIterable()) { + errors.append(err.toString() + "\n") + } + throw IndicoQueryException(errors.toString()) + } + } +} \ No newline at end of file diff --git a/src/main/java/com/indico/query/TrainingModelWithProgressQuery.java b/src/main/java/com/indico/query/TrainingModelWithProgressQuery.java deleted file mode 100644 index fc4584a..0000000 --- a/src/main/java/com/indico/query/TrainingModelWithProgressQuery.java +++ /dev/null @@ -1,82 +0,0 @@ -package com.indico.query; - -import com.apollographql.apollo.ApolloCall; -import com.apollographql.apollo.api.Response; -import com.indico.Async; -import com.indico.IndicoClient; -import com.indico.ModelGroupProgressGraphQLQuery; -import com.indico.Query; -import com.indico.entity.Model; -import com.indico.entity.TrainingProgress; -import java.util.Collections; -import java.util.Comparator; -import java.util.List; -import java.util.concurrent.CompletionException; -import java.util.concurrent.ExecutionException; - -public class TrainingModelWithProgressQuery implements Query { - - private int id; - private String name; - private final IndicoClient client; - - public TrainingModelWithProgressQuery(IndicoClient client) { - this.client = client; - } - - /** - * Use to query TrainingModelWithProgress by id - * - * @param id - * @return TrainingModelWithProgressQuery - */ - public TrainingModelWithProgressQuery id(int id) { - this.id = id; - return this; - } - - /** - * Use to query TrainingModelWithProgress by name - * - * @param name - * @return TrainingModelWithProgressQuery - */ - public TrainingModelWithProgressQuery name(String name) { - this.name = name; - return this; - } - - /** - * Queries the server and returns Training Model - * - * @return Model - */ - @Override - public Model query() { - try{ - ApolloCall apolloCall = this.client.apolloClient.query(ModelGroupProgressGraphQLQuery.builder() - .id(this.id) - .build()); - Response response = (Response) Async.executeSync(apolloCall).get(); - List modelGroups = response.data().modelGroups().modelGroups(); - if (modelGroups.size() != 1) { - throw new RuntimeException("Cannot find Model Group"); - } - List models = modelGroups.get(0).models(); - ModelGroupProgressGraphQLQuery.Model model = Collections.max(models, Comparator.comparingInt(m -> m.id())); - TrainingProgress progress = new TrainingProgress(model.trainingProgress().percentComplete()); - return new Model.Builder() - .id(model.id()) - .status(model.status()) - .trainingProgress(progress) - .build(); - }catch (CompletionException | ExecutionException | InterruptedException ex){ - throw new RuntimeException("Call to Train Model failed", ex); - } - } - - @Override - public Model refresh(Model obj) { - return obj; - } -} diff --git a/src/main/java/com/indico/query/TrainingModelWithProgressQuery.kt b/src/main/java/com/indico/query/TrainingModelWithProgressQuery.kt new file mode 100644 index 0000000..f4b928e --- /dev/null +++ b/src/main/java/com/indico/query/TrainingModelWithProgressQuery.kt @@ -0,0 +1,76 @@ +package com.indico.query + +import com.expediagroup.graphql.client.jackson.types.OptionalInput +import com.indico.IndicoClient +import com.indico.entity.Model +import com.indico.entity.TrainingProgress +import com.indico.exceptions.IndicoQueryException +import com.indico.graphql.ModelGroupProgressGraphQLQuery +import java.util.* + +class TrainingModelWithProgressQuery(private val client: IndicoClient) : + Query() { + private var id = 0 + private var name: String? = null + + /** + * Use to query TrainingModelWithProgress by id + * + * @param id + * @return TrainingModelWithProgressQuery + */ + fun id(id: Int): TrainingModelWithProgressQuery { + this.id = id + return this + } + + /** + * Use to query TrainingModelWithProgress by name + * + * @param name + * @return TrainingModelWithProgressQuery + */ + @Deprecated("not supported") + fun name(name: String?): TrainingModelWithProgressQuery { + this.name = name + return this + } + + /** + * Queries the server and returns Training Model + * + * @return Model + */ + override fun query(): Model { + return try { + val call = ModelGroupProgressGraphQLQuery(ModelGroupProgressGraphQLQuery.Variables( + id = OptionalInput.Defined(id) + )) + val response = client.execute(call) + handleErrors(response) + val modelGroups = response.data?.modelGroups?.modelGroups?: + throw IndicoQueryException("Error fetching model group for model $id") + if (modelGroups.isEmpty()) { + throw IndicoQueryException("Cannot find Model Group $id") + } + val models = modelGroups[0]?.models?: throw IndicoQueryException("Error fetching models for model group $id") + val model = models.maxByOrNull { m -> m!!.id!! } + + val percentComplete = model?.trainingProgress?.percentComplete?: + throw IndicoQueryException("Model progress percent is missing for $id") + val progress = TrainingProgress(percentComplete.toDouble()) + Model.Builder() + .id(model.id!!) + .status(model.status!!) + .trainingProgress(progress) + .build() + }catch (ex: RuntimeException) { + throw IndicoQueryException("Call to check Model progress failed", ex) + } + } + + override fun refresh(obj: Model?): Model? { + return obj + } + +} \ No newline at end of file diff --git a/src/main/java/com/indico/query/WorkflowQuery.java b/src/main/java/com/indico/query/WorkflowQuery.java deleted file mode 100644 index 6e16f3d..0000000 --- a/src/main/java/com/indico/query/WorkflowQuery.java +++ /dev/null @@ -1,41 +0,0 @@ -package com.indico.query; - -import com.indico.entity.Workflow; -import java.util.List; -import com.indico.Query; - - -public class WorkflowQuery implements Query { - private int id; - private String name; - - /** - * Use to query workflow by id - * @param id - * @return WorkflowQuery - */ - public WorkflowQuery id(int id) { - this.id = id; - - return this; - } - - /** - * Use to query workflow by name - * @param name - * @return WorkflowQuery - */ - public WorkflowQuery name(String name) { - this.name = name; - - return this; - } - - public Workflow query() { - return new Workflow.Builder().build(); - } - - public Workflow refresh(Workflow obj) { - return obj; - } -} \ No newline at end of file diff --git a/src/main/java/com/indico/request/GraphQLRequest.java b/src/main/java/com/indico/request/GraphQLRequest.java deleted file mode 100644 index f03f4cc..0000000 --- a/src/main/java/com/indico/request/GraphQLRequest.java +++ /dev/null @@ -1,74 +0,0 @@ -package com.indico.request; - -import com.apollographql.apollo.exception.ApolloException; -import com.indico.IndicoClient; -import com.indico.RestRequest; -import com.indico.JSON; -import java.io.IOException; -import okhttp3.MediaType; -import okhttp3.Request; -import okhttp3.RequestBody; -import okhttp3.Response; -import org.json.JSONArray; -import org.json.JSONObject; - -public class GraphQLRequest implements RestRequest { - - private final IndicoClient client; - private String query; - private String operationName; - private JSONObject variables; - - public GraphQLRequest(IndicoClient client) { - this.client = client; - } - - public GraphQLRequest query(String query) { - this.query = query; - return this; - } - - public GraphQLRequest operationName(String operationName) { - this.operationName = operationName; - return this; - } - - public GraphQLRequest variables(JSONObject variables) { - this.variables = variables; - return this; - } - - @Override - public JSONObject call() throws IOException { - JSONObject json = new JSONObject(); - json.put("query", this.query); - if (this.operationName != null) { - json.put("operationName", this.operationName); - } - if (this.variables != null) { - json.put("variables", this.variables); - } - - String uploadUrl = this.client.config.getAppBaseUrl() + "/graph/api/graphql"; - MediaType JSON = MediaType.parse("application/json; charset=utf-8"); - RequestBody requestBody = RequestBody.create(JSON, json.toString()); - Request request = new Request.Builder() - .url(uploadUrl) - .post(requestBody) - .build(); - - Response result = this.client.okHttpClient.newCall(request).execute(); - - String stringBody = result.body().string(); - JSONObject response = new JSON(stringBody).asJSONObject(); - result.body().close(); - - if (!response.isNull("errors")) { - JSONArray errors = response.getJSONArray("errors"); - throw new ApolloException(errors.toString()); - } - JSONObject data = response.getJSONObject("data"); - result.close(); - return data; - } -} diff --git a/src/main/java/com/indico/storage/Blob.java b/src/main/java/com/indico/storage/Blob.java index a59f71a..2dba2d5 100644 --- a/src/main/java/com/indico/storage/Blob.java +++ b/src/main/java/com/indico/storage/Blob.java @@ -62,9 +62,8 @@ public String asString(){ * Returns Blob as JSONObject * * @return JSONObject - * @throws IOException */ - public JSONObject asJSONObject() throws IOException { + public JSONObject asJSONObject() { String jsonString = this.asString(); return new JSON(jsonString).asJSONObject(); } @@ -73,15 +72,14 @@ public JSONObject asJSONObject() throws IOException { * Returns Blob as JSONArray * * @return JSONArray - * @throws IOException */ - public JSONArray asJSONArray() throws IOException { + public JSONArray asJSONArray() { String jsonString = this.asString(); return new JSON(jsonString).asJSONArray(); } @Override - public void close() throws Exception { + public void close() throws RuntimeException { this.response.close(); } } diff --git a/src/main/java/com/indico/storage/PurgeBlob.java b/src/main/java/com/indico/storage/PurgeBlob.java deleted file mode 100644 index 7182b8f..0000000 --- a/src/main/java/com/indico/storage/PurgeBlob.java +++ /dev/null @@ -1,19 +0,0 @@ -package com.indico.storage; - -import com.indico.Mutation; - -/** - * Remove a blob from indico blob storage - */ -public class PurgeBlob implements Mutation { - String url; - - public PurgeBlob url(String url) { - this.url = url; - return this; - } - - public PurgeBlobResult execute() { - return new PurgeBlobResult(); - } -} \ No newline at end of file diff --git a/src/main/java/com/indico/storage/PurgeBlobResult.java b/src/main/java/com/indico/storage/PurgeBlobResult.java deleted file mode 100644 index 759e83a..0000000 --- a/src/main/java/com/indico/storage/PurgeBlobResult.java +++ /dev/null @@ -1,13 +0,0 @@ -package com.indico.storage; - -import java.util.List; -import com.indico.Enums.PurgeBlobStatus; - - -/** - * Result of a purge blog request - */ -public class PurgeBlobResult { - public PurgeBlobStatus status; - public List errors; -} \ No newline at end of file diff --git a/src/main/java/com/indico/storage/RetrieveBlob.java b/src/main/java/com/indico/storage/RetrieveBlob.java index 4eaf67a..632aa9e 100644 --- a/src/main/java/com/indico/storage/RetrieveBlob.java +++ b/src/main/java/com/indico/storage/RetrieveBlob.java @@ -1,12 +1,9 @@ package com.indico.storage; import java.io.*; -import java.net.MalformedURLException; -import java.net.URL; import java.util.zip.GZIPInputStream; -import com.indico.IndicoClient; -import com.indico.Mutation; +import com.indico.IndicoKtorClient; import okhttp3.Request; import okhttp3.Response; @@ -17,10 +14,10 @@ public class RetrieveBlob implements AutoCloseable { private String url; - private IndicoClient client; + private IndicoKtorClient client; private Response response; - public RetrieveBlob(IndicoClient client) { + public RetrieveBlob(IndicoKtorClient client) { this.client = client; } @@ -58,12 +55,12 @@ public RetrieveBlob url(String url) { url = url.replaceAll("\"", ""); // Drop gzip String path = url.split("://")[1]; - this.url = client.config.getAppBaseUrl() + "/" + path; + this.url = client.getConfig().getAppBaseUrl() + "/" + path; return this; } private Response retrieveBlob() throws IOException { - Response response = this.client.okHttpClient.newCall(new Request.Builder().url(this.url).get().build()).execute(); + Response response = this.client.getHttpClient().newCall(new Request.Builder().url(this.url).get().build()).execute(); if (response.isSuccessful()) { return response; } else { diff --git a/src/main/java/com/indico/storage/UploadFile.java b/src/main/java/com/indico/storage/UploadFile.java deleted file mode 100644 index 4df347c..0000000 --- a/src/main/java/com/indico/storage/UploadFile.java +++ /dev/null @@ -1,72 +0,0 @@ -package com.indico.storage; - -import com.indico.IndicoClient; -import com.indico.JSON; -import com.indico.RestRequest; -import okhttp3.*; -import org.json.JSONArray; - -import java.io.File; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; - -public class UploadFile implements RestRequest { - - private IndicoClient client; - private List files = new ArrayList<>(); - - public UploadFile(IndicoClient client) { - this.client = client; - } - - /** - * Files to upload - * - * @param filePaths File paths - * @return UploadFile - */ - public UploadFile filePaths(List filePaths) { - for (String path : filePaths) { - File file = new File(path); - if (file.exists()) { - files.add(file); - } else { - throw new RuntimeException("File " + path + " does not exist"); - } - - } - - return this; - } - - /** - * Upload files and return metadata - * - * @return JSONArray - * @throws IOException - */ - @Override - public JSONArray call() throws IOException { - String uploadUrl = this.client.config.getAppBaseUrl() + "/storage/files/store"; - - MultipartBody.Builder multipartBody = new MultipartBody.Builder().setType(MultipartBody.FORM); - - for (File file : files) { - multipartBody.addFormDataPart(file.getName(), file.getName(), - RequestBody.create(MediaType.parse("application/octet-stream"), file)); - } - - MultipartBody requestBody = multipartBody.build(); - Request request = new Request.Builder() - .url(uploadUrl) - .post(requestBody) - .build(); - - Response result = client.okHttpClient.newCall(request).execute(); - String body = result.body().string(); - JSONArray fileMeta = new JSON(body).asJSONArray(); - result.close(); - return (JSONArray) fileMeta; - } -} diff --git a/src/main/java/com/indico/storage/UploadFile.kt b/src/main/java/com/indico/storage/UploadFile.kt new file mode 100644 index 0000000..5c1e7d0 --- /dev/null +++ b/src/main/java/com/indico/storage/UploadFile.kt @@ -0,0 +1,66 @@ +package com.indico.storage + +import com.indico.IndicoClient +import com.indico.IndicoKtorClient +import com.indico.JSON +import com.indico.RestRequest +import okhttp3.MediaType.Companion.toMediaTypeOrNull +import okhttp3.MultipartBody +import okhttp3.Request +import okhttp3.RequestBody.Companion.asRequestBody +import org.json.JSONArray +import java.io.File +import java.io.IOException +import java.util.ArrayList + +class UploadFile(private val client: IndicoClient) : RestRequest { + private val files: MutableList = ArrayList() + + /** + * Files to upload + * + * @param filePaths File paths + * @return UploadFile + */ + fun filePaths(filePaths: List?): UploadFile { + for (path in filePaths!!) { + val file = File(path) + if (file.exists()) { + files.add(file) + } else { + throw RuntimeException("File $path does not exist") + } + } + return this + } + + /** + * Upload files and return metadata + * + * @return JSONArray + * @throws IOException + */ + @Throws(IOException::class) + override fun call(): JSONArray? { + client as IndicoKtorClient + val uploadUrl: String = this.client.config.appBaseUrl + "/storage/files/store" + val multipartBody = MultipartBody.Builder().setType(MultipartBody.FORM) + for (file in files) { + multipartBody.addFormDataPart( + file.name, file.name, file.asRequestBody("application/octet-stream".toMediaTypeOrNull()) + + ) + } + val requestBody: MultipartBody = multipartBody.build() + val request = Request.Builder() + .url(uploadUrl) + .post(requestBody) + .build() + client.httpClient.newCall(request).execute().use { result -> + val body = result.body?.string() + return body?.let { JSON(it).asJSONArray() } + + } + } + +} \ No newline at end of file diff --git a/src/main/java/com/indico/storage/UploadStream.java b/src/main/java/com/indico/storage/UploadStream.java deleted file mode 100644 index 4329062..0000000 --- a/src/main/java/com/indico/storage/UploadStream.java +++ /dev/null @@ -1,69 +0,0 @@ -package com.indico.storage; - -import com.indico.IndicoClient; -import com.indico.JSON; -import com.indico.RestRequest; -import okhttp3.*; -import org.json.JSONArray; - -import java.io.File; -import java.io.IOException; -import java.util.Dictionary; -import java.util.Map; -import java.util.UUID; - -public class UploadStream implements RestRequest { - - private IndicoClient client; - private Map bytes; - private String fileName; - - public UploadStream(IndicoClient client) { - this.client = client; - } - - /** - * A stream to upload. - * - * @param stream Dictionary of string identifiers (ideally file names) to byte[] streams - * @return UploadFile - */ - public UploadStream byteStream(Map stream) { - if(stream != null){ - this.bytes = stream; - } - return this; - } - - /** - * Upload files and return metadata - * - * @return JSONArray - * @throws IOException - */ - @Override - public JSONArray call() throws IOException { - String uploadUrl = this.client.config.getAppBaseUrl() + "/storage/files/store"; - - MultipartBody.Builder multipartBody = new MultipartBody.Builder().setType(MultipartBody.FORM); - - if(this.fileName == null || this.fileName.isEmpty()){ - this.fileName = UUID.randomUUID().toString(); - } - for (String key : this.bytes.keySet()) { - multipartBody.addFormDataPart(key, key, - RequestBody.create(MediaType.parse("application/octet-stream"), this.bytes.get(key))); - } - MultipartBody requestBody = multipartBody.build(); - Request request = new Request.Builder() - .url(uploadUrl) - .post(requestBody) - .build(); - - Response result = client.okHttpClient.newCall(request).execute(); - String body = result.body().string(); - JSONArray fileMeta = new JSON(body).asJSONArray(); - result.close(); - return (JSONArray) fileMeta; - } -} diff --git a/src/main/java/com/indico/storage/UploadStream.kt b/src/main/java/com/indico/storage/UploadStream.kt new file mode 100644 index 0000000..c360fa5 --- /dev/null +++ b/src/main/java/com/indico/storage/UploadStream.kt @@ -0,0 +1,63 @@ +package com.indico.storage + +import com.indico.IndicoClient +import com.indico.IndicoKtorClient +import com.indico.JSON +import com.indico.RestRequest +import okhttp3.MediaType.Companion.toMediaTypeOrNull +import java.io.IOException +import okhttp3.MultipartBody +import okhttp3.Request +import java.util.UUID +import okhttp3.RequestBody.Companion.toRequestBody +import org.json.JSONArray + +class UploadStream(private val client: IndicoClient) : RestRequest { + private var bytes: Map? = null + private var fileName: String? = null + + /** + * A stream to upload. + * + * @param stream Dictionary of string identifiers (ideally file names) to byte[] streams + * @return UploadFile + */ + fun byteStream(stream: Map?): UploadStream { + if (stream != null) { + bytes = stream + } + return this + } + + /** + * Upload files and return metadata + * + * @return JSONArray + * @throws IOException + */ + @Throws(IOException::class) + override fun call(): JSONArray? { + client as IndicoKtorClient + val uploadUrl = client.config.appBaseUrl + "/storage/files/store" + val multipartBody = MultipartBody.Builder().setType(MultipartBody.FORM) + if (fileName == null || fileName!!.isEmpty()) { + fileName = UUID.randomUUID().toString() + } + for (key in bytes!!.keys) { + multipartBody.addFormDataPart( + key, key, + bytes!![key]!!.toRequestBody("application/octet-stream".toMediaTypeOrNull()) + ) + } + val requestBody: MultipartBody = multipartBody.build() + val request = Request.Builder() + .url(uploadUrl) + .post(requestBody) + .build() + client.httpClient.newCall(request).execute().use { result -> + val body = result.body?.string() + return body?.let { JSON(it).asJSONArray() } + + } + } +} \ No newline at end of file diff --git a/src/main/java/com/indico/type/Filter.kt b/src/main/java/com/indico/type/Filter.kt new file mode 100644 index 0000000..4072cf8 --- /dev/null +++ b/src/main/java/com/indico/type/Filter.kt @@ -0,0 +1,73 @@ +package com.indico.type + +import com.indico.type.SubmissionStatus + +/*** + * Base filter class - AND list and OR list for graphql queries. + */ +abstract class Filter(val ands: List = ArrayList(), val ors: List = ArrayList()){ + +} + +/** + * Submission Filters. + * For a single filter value, populate the value you want to filter on. + * Otherwise: enter a *single value* in a *single object* for each AND filter or each OR filter + * and populate the "ands" list and the "ors" list with a list of the matching parameter. + */ +class SubmissionFilter private constructor( /** + * Name of the input file name used in the submission. + */ + var inputFileName: String? = null, + + /** + * Is this boolean retrieved? + */ + var retrieved: Boolean? = null, + + /** + * Status of the submission. + */ + var status: SubmissionStatus? = null, + ands: List, ors: List): Filter(ands, ors) { + + + data class Builder( + var inputFileName: String? = null, + + var retrieved: Boolean? = null, + var status: SubmissionStatus? = null, + var ands: List = ArrayList(), var ors: List = ArrayList()){ + + /** + * Name of the input file name used in the submission. + */ + fun inputFileName(inputFileName: String) =apply {this.inputFileName = inputFileName} + + /** + * Is this boolean retrieved? + */ + fun retrieved(retrieved: Boolean) = apply {this.retrieved = retrieved} + /** + * Status of the submission. + */ + fun status(status: SubmissionStatus) = apply {this.status = status} + + /** + * AND Filters. + */ + fun ands(ands: List) = apply {this.ands = ands} + + /** + * OR Filters. + */ + fun ors(ors: List) = apply {this.ors = ors} + + /** + * Create the builder. + */ + fun build() = SubmissionFilter(inputFileName, retrieved, status, ands, ors) + + + } +} \ No newline at end of file diff --git a/src/main/java/com/indico/type/JobStatus.kt b/src/main/java/com/indico/type/JobStatus.kt new file mode 100644 index 0000000..35908c3 --- /dev/null +++ b/src/main/java/com/indico/type/JobStatus.kt @@ -0,0 +1,49 @@ +package com.indico.type + +enum class JobStatus { + /** + * Job has failed + */ + FAILURE, + + /** + * Ignored. + */ + IGNORED, + + /** + * Job status not yet known. + */ + PENDING, + + /** + * Event only - Worker received the job. + */ + RECEIVED, + + /*** + * Events only - Job was rejected. + */ + REJECTED, + + /** + * Job is being retried. + */ + RETRY, + + /** + * Job was revoked. + */ + REVOKED, + + /** + * Worker has started the task. + */ + STARTED, + + /** + * Job was successful. + */ + SUCCESS, + TRAILED +} \ No newline at end of file diff --git a/src/main/java/com/indico/type/SubmissionStatus.kt b/src/main/java/com/indico/type/SubmissionStatus.kt new file mode 100644 index 0000000..fe79660 --- /dev/null +++ b/src/main/java/com/indico/type/SubmissionStatus.kt @@ -0,0 +1,9 @@ +package com.indico.type + +enum class SubmissionStatus { + PROCESSING, + PENDING_REVIEW, + PENDING_ADMIN_REVIEW, + COMPLETE, + FAILED, +} \ No newline at end of file diff --git a/src/main/graphql/DocumentExtractionGraphQL.graphql b/src/main/resources/DocumentExtractionGraphQL.graphql similarity index 100% rename from src/main/graphql/DocumentExtractionGraphQL.graphql rename to src/main/resources/DocumentExtractionGraphQL.graphql diff --git a/src/main/graphql/GenerateSubmissionResultsGraphQL.graphql b/src/main/resources/GenerateSubmissionResultsGraphQL.graphql similarity index 100% rename from src/main/graphql/GenerateSubmissionResultsGraphQL.graphql rename to src/main/resources/GenerateSubmissionResultsGraphQL.graphql diff --git a/src/main/graphql/GetSubmissionGraphQL.graphql b/src/main/resources/GetSubmissionGraphQL.graphql similarity index 100% rename from src/main/graphql/GetSubmissionGraphQL.graphql rename to src/main/resources/GetSubmissionGraphQL.graphql diff --git a/src/main/graphql/JobResultGraphQL.graphql b/src/main/resources/JobResultGraphQL.graphql similarity index 100% rename from src/main/graphql/JobResultGraphQL.graphql rename to src/main/resources/JobResultGraphQL.graphql diff --git a/src/main/graphql/JobStatusGraphQL.graphql b/src/main/resources/JobStatusGraphQL.graphql similarity index 100% rename from src/main/graphql/JobStatusGraphQL.graphql rename to src/main/resources/JobStatusGraphQL.graphql diff --git a/src/main/graphql/ListSubmissionsGraphQL.graphql b/src/main/resources/ListSubmissionsGraphQL.graphql similarity index 100% rename from src/main/graphql/ListSubmissionsGraphQL.graphql rename to src/main/resources/ListSubmissionsGraphQL.graphql diff --git a/src/main/graphql/ListWorkflowsGraphQL.graphql b/src/main/resources/ListWorkflowsGraphQL.graphql similarity index 100% rename from src/main/graphql/ListWorkflowsGraphQL.graphql rename to src/main/resources/ListWorkflowsGraphQL.graphql diff --git a/src/main/graphql/LoadModelGraphQL.graphql b/src/main/resources/LoadModelGraphQL.graphql similarity index 100% rename from src/main/graphql/LoadModelGraphQL.graphql rename to src/main/resources/LoadModelGraphQL.graphql diff --git a/src/main/graphql/ModelGroupGraphQL.graphql b/src/main/resources/ModelGroupGraphQL.graphql similarity index 100% rename from src/main/graphql/ModelGroupGraphQL.graphql rename to src/main/resources/ModelGroupGraphQL.graphql diff --git a/src/main/graphql/ModelGroupProgressGraphQL.graphql b/src/main/resources/ModelGroupProgressGraphQL.graphql similarity index 100% rename from src/main/graphql/ModelGroupProgressGraphQL.graphql rename to src/main/resources/ModelGroupProgressGraphQL.graphql diff --git a/src/main/graphql/PredictModelGraphQL.graphql b/src/main/resources/PredictModelGraphQL.graphql similarity index 100% rename from src/main/graphql/PredictModelGraphQL.graphql rename to src/main/resources/PredictModelGraphQL.graphql diff --git a/src/main/graphql/UpdateSubmissionGraphQL.graphql b/src/main/resources/UpdateSubmissionGraphQL.graphql similarity index 100% rename from src/main/graphql/UpdateSubmissionGraphQL.graphql rename to src/main/resources/UpdateSubmissionGraphQL.graphql diff --git a/src/main/graphql/WorkflowJobGraphQL.graphql b/src/main/resources/WorkflowJobGraphQL.graphql similarity index 100% rename from src/main/graphql/WorkflowJobGraphQL.graphql rename to src/main/resources/WorkflowJobGraphQL.graphql diff --git a/src/main/graphql/WorkflowSubmissionGraphQL.graphql b/src/main/resources/WorkflowSubmissionGraphQL.graphql similarity index 100% rename from src/main/graphql/WorkflowSubmissionGraphQL.graphql rename to src/main/resources/WorkflowSubmissionGraphQL.graphql diff --git a/src/main/resources/schema.graphql b/src/main/resources/schema.graphql new file mode 100644 index 0000000..f89ddf2 --- /dev/null +++ b/src/main/resources/schema.graphql @@ -0,0 +1,2784 @@ +schema { + query: SuperSchema + mutation: SuperMutation + subscription: Subscription +} + +"Directs the executor to include this field or fragment only when the `if` argument is true" +directive @include( + "Included when true." + if: Boolean! + ) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT + +"Directs the executor to skip this field or fragment when the `if`'argument is true." +directive @skip( + "Skipped when true." + if: Boolean! + ) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT + +"Marks the field or enum value as deprecated" +directive @deprecated( + "The reason for the deprecation" + reason: String = "No longer supported" + ) on FIELD_DEFINITION | ENUM_VALUE + +"Exposes a URL that specifies the behaviour of this scalar." +directive @specifiedBy( + "The URL that specifies the behaviour of this scalar." + url: String! + ) on SCALAR + +interface ComponentInterface { + componentAppId: Int + componentType: ComponentType + docbotId: Int + id: Int + reviewable: Boolean +} + +union Evaluation = AnnotationEvaluation | ClassificationMultipleEvaluation | ClassificationSingleEvaluation | ObjectDetectionEvaluation | RationalizedClassificationEvaluation + +union Prediction = AnnotationPrediction | ClassificationMultiplePrediction | ClassificationPrediction | RationalizedClassificationPrediction + +type ANNOTATIONTestResult { + falseNegative: [MultiTestResult] + falsePositive: [MultiTestResult] + modelId: Int + resultCounts: ResultCounts + threshold: Float + trueNegative: [MultiTestResult] + truePositive: [MultiTestResult] +} + +type ActiveFormFields { + jobIds: [String] +} + +type AddDataToWorkflow { + subsetId: Int + workflow: Workflow +} + +type AnnotationClassMetrics { + metrics: [PerClassSeqMetrics] + name: String +} + +type AnnotationEvaluation { + examples( + "Find results after this cursor" + after: Int, + "Find results before this cursor" + before: Int, + "Return results in descending order" + desc: Boolean, + includeAggregate: Boolean = false, + "filter on a specific label" + label: String, + "Max number of results to return" + limit: Int, + "attribute to order results by" + orderBy: ANNOTATIONEXAMPLE_COLUMN_ENUM, + "number of pages to skip" + skip: Int, + "filter source data on a string" + textSearch: String + ): AnnotationExamplesPage + metrics: AnnotationModelMetrics + testResults(actual: [String], threshold: Float): ANNOTATIONTestResult +} + +type AnnotationExample { + annotationLabels: [AnnotationLabel] + datafile: DataFile + predictions: [AnnotationPrediction] + rowId: Int + rowIndex: Int + text: String +} + +type AnnotationExamplesPage { + annotationExamples: [AnnotationExample] + pageInfo: PageInfo +} + +type AnnotationLabel { + end: Int + label: String + start: Int + userId: Int +} + +type AnnotationModelMetrics { + "Metrics for evaluating model performance per class" + classMetrics: [AnnotationClassMetrics] + "Metrics for evaluating model performance at the model level, across classes" + modelLevelMetrics: [ModelLevelMetrics] + "Model retraining is required in order to calculate metrics." + retrainForMetrics: Boolean +} + +type AnnotationPrediction { + confidence: Float + end: Int + label: String + start: Int + text: String +} + +type AppRoleCount { + count: Int + role: AppRole +} + +type CLASSIFICATIONTestResult { + falseNegative: [SingleTestResult] + falsePositive: [SingleTestResult] + modelId: Int + resultCounts: ResultCounts + threshold: Float + trueNegative: [SingleTestResult] + truePositive: [SingleTestResult] +} + +type CLASSIFICATION_MULTIPLETestResult { + falseNegative: [MultiTestResult] + falsePositive: [MultiTestResult] + modelId: Int + resultCounts: ResultCounts + threshold: Float + trueNegative: [MultiTestResult] + truePositive: [MultiTestResult] +} + +type CancelModelTraining { + success: Boolean +} + +type ClassBalance { + all: [ClassCount] + majorityVoteWithTies: [ClassCount] + majorityVoteWithoutTies: [ClassCount] + unanimous: [ClassCount] +} + +type ClassConfidence { + confidence: Float + name: String +} + +type ClassCount { + count: Int + target: String +} + +type ClassStpFacts { + "Auto Review STP for class aggregated by parent filter context" + autoReviewStpForClass: Float + className: String + "Review STP for class aggregated by parent filter context." + reviewStpForClass: Float + stps: [DailyStp] +} + +type ClassStpMetrics { + "STP metrics for this class, aggregated based on the filters applied to the query" + aggregate: StpMetric + className: String + "STP metrics for this class, daily" + daily: [DailyStpMetric] +} + +type ClassificationModelMetrics { + confusionMatrix: ConfusionMatrix + metricsTable: [MetricsTable] + prCurves: [PRCurve] + rocCurves: [ROCCurve] +} + +type ClassificationMultipleEvaluation { + confusionResult(actual: String!, predicted: String!): [SingleTestResult] + metrics: ClassificationModelMetrics + testResults(actual: [String], threshold: Float): CLASSIFICATION_MULTIPLETestResult +} + +type ClassificationMultiplePrediction { + confidences: [ClassConfidence] + explanations: [Explanation] + labels: [String] + tokenPredictions: [TokenPrediction] +} + +type ClassificationPrediction { + confidences: [ClassConfidence] + explanations: [Explanation] + label: String + tokenPredictions: [TokenPrediction] +} + +type ClassificationSingleEvaluation { + confusionResult(actual: String!, predicted: String!): [SingleTestResult] + metrics: ClassificationModelMetrics + testResults(actual: String, threshold: Float): CLASSIFICATIONTestResult +} + +type Component implements ComponentInterface { + componentAppId: Int + componentType: ComponentType + docbotId: Int + id: Int + reviewable: Boolean +} + +type ConfusionMatrix { + classes: [String] + matrix: [[Float]] +} + +type DailyAvg { + avg: Float + date: Date +} + +type DailyCount { + count: Int + date: Date +} + +type DailyPredictionMetric { + date: Date + numPreds: Int +} + +type DailyQueueMetric { + "Average cumulative age of items on queues waiting to be reviewed" + avgAgeInQueue: Float + date: Date + "Cumulative hours of items on queues waiting to be reviewed" + hoursOnQueue: Float + "Number of submissions on the queues waiting to be reviewed" + subsOnQueue: Int +} + +type DailyStp { + autoReviewDenom: Int + autoReviewNumerator: Int + autoReviewStpPct: Float + date: Date + reviewDenom: Int + reviewNumerator: Int + reviewStpPct: Float +} + +type DailyStpMetric { + "The union of user supplied labels and auto review labels" + autoReviewDenom: Int + "The number of human accepted auto review labels" + autoReviewNumerator: Int + "Auto review numerator divided by auto review denomoinator, applicable if auto-review is enabled" + autoReviewStpPct: Float + date: Date + "The union of user supplied labels and model predictions" + reviewDenom: Int + "The number of human accepted model predictions that exactly match model predictions" + reviewNumerator: Int + "Review numerator divided by review denominator, applicable if review is enabled and auto-review is disabled" + reviewStpPct: Float +} + +type DailySubmissionMetric { + "Number of items completed in the workflow, whether review was enabled or disabled" + completed: Int + "Number of items accepted in the exceptions queue" + completedExceptionQueue: Int + "Number of items that were accepted in either the review or exceptions queue" + completedInReview: Int + "Number of items accepted in the review queue" + completedReviewQueue: Int + date: Date + "Number of items rejected from the exceptions queue" + rejectedInReview: Int + "Number of items submitted to the workflow" + submitted: Int +} + +type DailyTimeOnTask { + date: Date + minutes: Float + numReviews: Int +} + +type DailyTimeOnTaskMetric { + "The average amount of minutes reviewers spend on documents for this workflow, aggregated across review and exceptions queue" + avgMinsPerDoc: Float + "The average amount of minutes reviewers spend on documents for this workflow in the exceptions queue" + avgMinsPerDocExceptions: Float + "The average amount of minutes reviewers spend on documents for this workflow in the review queue" + avgMinsPerDocReview: Float + date: Date +} + +type DataColumn { + columnIndex: Int + datasetId: Int + datatype: DataTypes + id: Int + name: String + ocrUsed: Boolean +} + +"Data processing configurations for dataset" +type DataConfig { + ocrOptions: OCROptions +} + +type DataFile { + deleted: Boolean + failureType: FileFailureType + fileHash: String + fileSize: Int + fileType: FileType + id: Int + name: String + numPages: Int + pageIds: [Int] + pages(pageNums: [Int]): [DataFilePage] + rainbowUrl: String + status: FileStatus + statusMeta: JSONString +} + +type DataFilePage { + datafileId: Int + docEndOffset: Int + docStartOffset: Int + id: Int + image: String + pageInfo: String + pageNum: Int + thumbnail: String +} + +""" +Cyclone Label Breakdown Response + +response = { + "num_empty_examples": len(empty_sources), + "num_examples": num_examples, + "labelset_id": labelset.id, + "target_contradictions": percent_contradictions, + "source_duplicates": percent_source_duplicate, + "class_balance": target_counter, + "warnings": warnings, +} +""" +type DataInfo { + classBalance: ClassBalance + datasetId: Int + labelsetId: Int + numEmptyExamples: Int + numExamples: Int + sourceColumnId: Int + sourceDuplicates: Float + subsetIds: [Int] + targetContradictions: Float + warnings: [String] +} + +type Dataset { + createdAt: String + createdBy: Int + dataConfig: DataConfig + dataInfo(labelsetId: Int, sourceColumnId: Int): DataInfo @deprecated(reason : "Fetch class balance info under ModelGroup") + datacolumns: [DataColumn] + defaultSubsetId: Int + errorInfo: String + exports: [Export] + "Types of files in this dataset" + fileTypes( + "Include only filetypes associated with rows" + filterable: Boolean = true + ): [FileType] + files: [DataFile] + id: Int + labelsets: [LabelSet] + modelGroup(id: Int): ModelGroup + modelGroups(taskTypes: [TaskType]): [ModelGroup] + name: String + numFireGroups: Int + numModelGroups: Int + numQuestionnaires: Int + permissions: [String] + rowCount: Int + status: DatasetStatus + type: DatasetType + updatedAt: String + updatedBy: Int + users: [DatasetUser] +} + +type DatasetPage { + datasets: [Dataset] + pageInfo: PageInfo +} + +type DatasetRole { + datasetId: Int + role: Roles +} + +type DatasetUser { + datasetId: Int + email: String + id: Int + name: String + permissions: [String] + role: Roles + userId: Int +} + +type DeleteDataset { + success: Boolean +} + +type DeleteDatasetUser { + success: Boolean +} + +type DeleteFireGroup { + success: Boolean +} + +type DeleteModelGroup { + success: Boolean +} + +type DeletePreference { + success: Boolean +} + +type DeleteQuestionnaire { + success: Boolean +} + +type DocBot { + components: [ComponentInterface] + createdAt: String + createdBy: Int + docbotType: DocBotType + id: Int + name: String + parents: [Int] + processors: [Processor] + subsetId: Int + updatedAt: String + updatedBy: Int +} + +type DocumentExtraction { + jobIds: [String] +} + +type EnabledCount { + "Number of deactivated users" + disabled: Int + "Number of active users" + enabled: Int +} + +type Example { + Type: String + datafile: DataFile + datafileId: Int + datapointId: Int + datarowId: Int + id: String + labelsetId: Int + predictions: [Prediction] + rowIndex: Int + source: String + status: ExampleStatus + targets: [Target] + updatedAt: DateTime +} + +type ExamplePage { + examples: [Example] + pageInfo: PageInfo +} + +type ExplainMeta { + datasetId: Int + rowId: Int + rowIndex: Int + sourceColumnId: Int +} + +type Explanation { + label: String + metadata: ExplainMeta + similarity: Float + text: String +} + +type Export { + anonymous: Boolean + columnIds: [Int] + "Unix timestamp" + createdAt: String + "user id" + createdBy: Int + datasetId: Int + "Download URL of this export" + downloadUrl: String + id: Int + labelsetIds: [Int] + name: String + numLabels: Int + status: ExportStatus + subsetIds: [Int] +} + +type ExportPage { + exports: [Export] + pageInfo: PageInfo +} + +type Fire { + clusterId: Int + createdAt: String + createdBy: Int + datacolumnId: Int + datasetId: Int + featurecolumnId: Int + filters: String + fireGroupId: Int + id: Int + status: FireStatus + subsetId: Int + vectorizerId: Int +} + +type FireGroup { + createdAt: String + createdBy: Int + datacolumnId: Int + datasetId: Int + defaultFire: Fire + featurecolumnId: Int + fires: [Fire] + id: Int + name: String + numRows: Int + processors: [Processor] + ready: Boolean + status: FireStatus + subsetId: Int + updatedAt: String + updatedBy: Int +} + +type FireGroupPage { + fireGroups: [FireGroup] + pageInfo: PageInfo +} + +type FireSimilarity { + row: Int + value: Int +} + +""" +Example: +mutation generate_new_refresh_token { + GenerateNewApiRefreshToken{ + refresh_token + } +} +""" +type GenerateNewApiRefreshToken { + refreshToken: String +} + +type GenerateResetLink { + link: String +} + +type GenerateSubmissionReport { + jobId: String +} + +type GenerateUserChangelogReport { + jobId: String +} + +type GenerateUserSnapshotReport { + jobId: String +} + +type Job { + id: String + ready: Boolean + result: JSONString + status: JobStatus +} + +type LabelSet { + id: Int + name: String + numFullyLabeled: Int + numLabelersRequired: Int + numLabelsetPoints: Int + targetNames: [TargetName] + taskType: TaskType +} + +type Login { + id: Int + loggedInAt: DateTimeISO + loginIp: String +} + +type LoginPage { + logins: [Login] + pageInfo: PageInfo +} + +type MetricsTable { + accuracy: Float + auc: Float + f1Score: Float + name: String + precision: Float + recall: Float +} + +type Model { + classNames: [String] + collectionName: String + createdAt: String + createdBy: Int + evaluation: Evaluation + id: Int + linkable: Boolean + modelInfo: JSONString + modelType: ModelType + predictionLabelsetId: Int + predictions(sources: [String], threshold: Float): [Prediction] + rareClasses: [ClassCount] + status: ModelStatus + testingSubsetId: Int + trainingProgress: TrainingProgress + trainingSubsetId: Int + unlabeledClasses: [String] + updatedAt: String + updatedBy: Int +} + +type ModelGroup { + "Ordered list of target names used to train the model." + classNames: [String] + createdAt: String + createdBy: Int + dataInfo: DataInfo + dataType: DataTypes + datasetId: Int + example(rowIndex: Int): Example + id: Int + interlabelerResolution: LabelResolutionStrategy + labelset: LabelSet + labelsetColumnId: Int + model(id: Int): Model + models: [Model] + name: String + pagedExamples( + "Find results after this cursor" + after: Int, + "Find results before this cursor" + before: Int, + "Return results in descending order" + desc: Boolean, + filters: ExampleFilter, + "Max number of results to return" + limit: Int, + "attribute to order results by" + orderBy: ExampleOrder, + "number of pages to skip" + skip: Int + ): ExamplePage + processors: [Processor] + questionnaireId: Int + retrainRequired: Boolean + selectedModel: Model + sourceColumn: DataColumn + "Column id where raw data for model is stored" + sourceColumnId: Int + status: ModelStatus + subsetId: Int + taskType: TaskType + updatedAt: String + updatedBy: Int + workflowId: Int +} + +type ModelGroupComponent implements ComponentInterface { + componentAppId: Int + componentType: ComponentType + docbotId: Int + id: Int + modelType: ModelType + reviewable: Boolean + taskType: TaskType +} + +type ModelGroupPage { + modelGroups: [ModelGroup] + pageInfo: PageInfo +} + +type ModelLevelMetrics { + "F1 score calculated per-class and then averaged" + macroF1: Float + "F1 score calculated based on pooling instances across classes" + microF1: Float + "Type of span the metric is calculated on, e.g. Token, Sequence Superset" + spanType: String + "F1 score calculated per-class and then weighted averaged, weighted by instances per class" + weightedF1: Float +} + +type ModelLoad { + status: String +} + +type ModelPredict { + jobId: String +} + +type ModelSimilarity { + row: Int + value: Int +} + +type ModelStp { + autoReviewDenom: Int + autoReviewNumerator: Int + autoReviewStpPct: Float + modelGroupId: Int + name: String + reviewDenom: Int + reviewNumerator: Int + reviewStpPct: Float +} + +type ModelStpDailyFacts { + "Auto Review STP for model aggregated by parent filter context." + autoReviewStpForModel: Float + classStps: [ClassStpFacts] + modelGroupId: Int + name: String + "Review STP for model aggregated by parent filter context." + reviewStpForModel: Float + stps: [DailyStp] +} + +type ModelStpMetrics { + "Aggregate STP metrics for the model based on filters applied to the query" + aggregate: StpMetric + "STP metrics for each class associated with the model" + classMetrics: [ClassStpMetrics] + "Daily STP metrics for the model" + daily: [DailyStpMetric] + modelGroupId: Int + name: String +} + +type MultiTestResult { + actual: [String] + explanations: [Explanation] + predicted: [String] + rowIdx: Int + score: [ClassConfidence] + text: String +} + +type OBJECT_DETECTIONTestResult { + falseNegative: [MultiTestResult] + falsePositive: [MultiTestResult] + modelId: Int + resultCounts: ResultCounts + threshold: Float + trueNegative: [MultiTestResult] + truePositive: [MultiTestResult] +} + +"OCR options for dataset" +type OCROptions { + "Auto rotate" + autoRotate: Boolean + "Return table information for post-processing rules" + cells: Boolean + "Force render" + forceRender: Boolean + "List of languages to use" + languages: [LanguageCode] + "Native layout" + nativeLayout: Boolean + "Native PDF" + nativePdf: Boolean + "Read table as a single column" + singleColumn: Boolean + "Read table in row or column order" + tableReadOrder: TableReadOrder +} + +type ObjectDetectionEvaluation { + metrics: JSONString + testResults(actual: [String], threshold: Float): OBJECT_DETECTIONTestResult +} + +type PDFExtraction { + jobId: String +} + +type PRCurve { + confidences: [String] + name: String + precision: [Float] + recall: [Float] +} + +type PageInfo { + aggregateCount: Int + endCursor: Int + hasNextPage: Boolean + startCursor: Int +} + +type PerClassSeqMetrics { + "Harmonic mean of precision and recall" + f1Score: Float + "# of examples that were affirmative but were not predicted as such by the model" + falseNegatives: Int + "# of examples that were predicted affirmative in the class but negative" + falsePositives: Int + "Of the predicted true positives, the percentage that were actually correct" + precision: Float + "Of the total true positives, the percentage were recovered by the model as true positives" + recall: Float + "Type of span the metric is calculated on, e.g. Token, Sequence Superset" + spanType: String + "# of examples that were predicted affirmative and were actually affirmative" + truePositives: Int +} + +type PredictionMetric { + numPreds: Int +} + +type PredictionMetrics { + "Total number of model generated predictions for this workflow" + aggregate: PredictionMetric + "Number of model generated predictions for the workflow, each day" + daily: [DailyPredictionMetric] +} + +type Preference { + app: String + key: String + value: JSONString +} + +type Processor { + args: JSONString + processorType: ProcessorType! +} + +type Question { + DatasetId: Int + SubsetId: Int + id: Int + keywords: [String] + labelset: LabelSet + labelsetId: Int + modelGroup: ModelGroup + modelGroupId: Int + questionnaireId: Int + status: QuestionStatus + "Ordered list of target names." + targets: [String] + text: String + type: TaskType +} + +type Questionnaire { + "Labeling tasks are enabled" + active: Boolean + "Predictions are enabled" + activeLearning: Boolean + assignedUsers: [QuestionnaireUser] + "Unix timestamp" + createdAt: String + "User id" + createdBy: Int + dataType: DataType + datasetId: Int + examples( + datafileId: Int, + numExamples: Int!, + "First question in questionnaire is selected if not provided" + questionId: Int + ): [Example] + "Labeling will always be done in Text mode" + forceTextMode: Boolean + "Unique ID of the questionnaire" + id: Int + instructions: String + name: String + numFullyLabeled: Int + numLabeledByMe: Int + numRejected: Int + numTotalExamples: Int + "On-document labeling interface enabled" + odl: Boolean + processors: [Processor] + questions: [Question] + "cumulative status of all questions in questionnaire" + questionsStatus: QuestionStatus + role: Roles + "Show predictions at the global level" + showPredictions: Boolean + sourceColumnId: Int + subsetId: Int + "Unix timestamp" + updatedAt: String + "User id" + updatedBy: Int +} + +type QuestionnairePage { + pageInfo: PageInfo + questionnaires: [Questionnaire] +} + +type QuestionnaireUser { + "Time the questionnaire user was created" + createdAt: String + "User ID of the user that created the questionnaire" + createdBy: Int + datasetId: Int + "Email of the user associated with the questionnaire" + email: String + id: Int + labelCount: Int + "Name of the user associated with the questionnaire" + name: String + permissions: [String] + questionnaireId: Int + role: Roles + "ID of the user associated with the questionnaire" + userId: Int +} + +type QueueMetrics { + dailyCumulative: [DailyQueueMetric] +} + +type RATIONALIZED_CLASSIFICATIONTestResult { + falseNegative: [SingleTestResult] + falsePositive: [SingleTestResult] + modelId: Int + resultCounts: ResultCounts + threshold: Float + trueNegative: [SingleTestResult] + truePositive: [SingleTestResult] +} + +type ROCCurve { + auc: Float + confidences: [String] + falsePositiveRate: [Float] + name: String + truePositiveRate: [Float] +} + +type RationalizedClassificationEvaluation { + confusionResult(actual: String!, predicted: String!): [SingleTestResult] + metrics: ClassificationModelMetrics + testResults(actual: String, threshold: Float): RATIONALIZED_CLASSIFICATIONTestResult +} + +type RationalizedClassificationPrediction { + confidences: [ClassConfidence] + explanations: [Explanation] + label: String + tokenPredictions: [TokenPrediction] +} + +type Refresh { + refreshStartedAt: DateTimeISO + refreshedAt: DateTimeISO + refreshing: Boolean +} + +type RefreshTokenMeta { + createdAt: DateTime + id: Int + isApiToken: Boolean + isValid: Boolean + userId: Int +} + +type RemoveQuestionnaireUser { + success: Boolean +} + +type ResultCounts { + falseNegative: Float + falsePositive: Float + trueNegative: Float + truePositive: Float +} + +type Review { + adminReview: Boolean @deprecated(reason : "Please use review_type") + changes: JSONString + completedAt: String + createdAt: String + createdBy: Int + id: Int + notes: String + rejected: Boolean + reviewType: ReviewType + submissionId: Int +} + +type ReviewSettings { + "Enable the Auto review queue" + autoReviewQueueEnabled: Boolean + "Add value to Exceptions queue submissions in the workflow" + exceptionsQueueAddValueEnabled: Boolean + "Enable the Exceptions queue" + exceptionsQueueEnabled: Boolean + "Add a rejection reason to review queue submissions in the workflow" + exceptionsQueueRejectionReasonRequired: Boolean + "Add value to Review queue submissions in the workflow" + reviewQueueAddValueEnabled: Boolean + "Enable the Review queue. If disabled, disables the Exceptions and Auto review queue" + reviewQueueEnabled: Boolean + "Add a rejection reason to Review queue submissions in the workflow" + reviewQueueRejectionReasonRequired: Boolean + "Required number of reviewers per submission in the workflow" + reviewQueueReviewersRequired: Int +} + +type ScopeAccess { + scope: Scope + userId: Int +} + +type SingleTestResult { + actual: String + explanations: [Explanation] + predicted: String + rowIdx: Int + score: [ClassConfidence] + text: String +} + +type StpFacts { + model: [ModelStp] +} + +type StpFactsDaily { + model: [ModelStpDailyFacts] + workflow: [DailyStp] +} + +type StpMetric { + "The union of user supplied labels and auto review labels" + autoReviewDenom: Int + "The number of human accepted auto review labels" + autoReviewNumerator: Int + "Auto review numerator divided by auto review denomoinator, applicable if auto-review is enabled" + autoReviewStpPct: Float + "The union of user supplied labels and model predictions" + reviewDenom: Int + "The number of human accepted model predictions that exactly match model predictions" + reviewNumerator: Int + "Review numerator divided by review denominator, applicable if review is enabled and auto-review is disabled" + reviewStpPct: Float +} + +type StpMetrics { + "Schema for model STP metrics including class STP metrics as child nodes on this object's schema" + model: [ModelStpMetrics] + "STP metrics aggregate at the level of the workflow" + workflow: WorkflowStpMetrics +} + +type Submission { + "Internal field for review load" + AutoReviewLoaded: Boolean + "Latest auto review for submission" + autoReview: Review + "Datetime the submission reached a completed state" + completedAt: DateTime + "Datetime the submission was created" + createdAt: DateTime + "ID of the user who created the submission" + createdBy: Int + "ID of the dataset associated with the submission" + datasetId: Int + "Submission files have been deleted from file store" + deleted: Boolean + "Errors occurred during this submission" + errors: String + "Unique ID of the submission" + id: Int + "Local URL to first stored input" + inputFile: String + "Original name of first file" + inputFilename: String + inputFiles: [SubmissionFile] + "Local URL to stored output" + resultFile: String + retries: [SubmissionRetry] + "Submission has been marked as having been retrieved" + retrieved: Boolean + searchResult( + "Max result length including keyword and surrounding text" + context: Int, + "Use case-insensitive search" + ignoreCase: Boolean = true, + "Keyword to search the text for" + keyword: String!, + "Use a regex keyword to find matches in the text" + regex: Boolean, + "ID of the submission file to search. Must be a part of the parent submission's `input_files`" + subfileId: Int, + "List index of the submission file to search in the parent submission's `input_files`" + subfileIndex: Int + ): [TextSearchResult] + "Current status of the submission process" + status: SubmissionStatus + "Datetime the submission was updated" + updatedAt: DateTime + "ID of the user who updated the submission" + updatedBy: Int + "ID of the workflow associated with the submission" + workflowId: Int +} + +type SubmissionCounts { + complete: Int + failed: Int + pendingAdminReview: Int + pendingAutoReview: Int + pendingReview: Int + processing: Int +} + +"Creates an unique ID as a string, so that GraphQL will display all of the events in a changelog" +type SubmissionEvent { + "Internal field for review load" + AutoReviewLoaded: Boolean + "Latest auto review for submission" + autoReview: Review + "Datetime the submission reached a completed state" + completedAt: DateTime + "Datetime the submission was created" + createdAt: DateTime + "ID of the user who created the submission" + createdBy: Int + "ID of the dataset associated with the submission" + datasetId: Int + "Submission files have been deleted from file store" + deleted: Boolean + "Errors occurred during this submission" + errors: String + "Unique combination of ID and updated_at" + id: String + "Local URL to first stored input" + inputFile: String + "Original name of first file" + inputFilename: String + inputFiles: [SubmissionFile] + "Local URL to stored output" + resultFile: String + retries: [SubmissionRetry] + "Submission has been marked as having been retrieved" + retrieved: Boolean + "Current status of the submission process" + status: SubmissionStatus + "ID of the submission" + submissionId: Int + "Datetime the submission was updated" + updatedAt: DateTime + "ID of the user who updated the submission" + updatedBy: Int + "ID of the workflow associated with the submission" + workflowId: Int +} + +type SubmissionEventPage { + pageInfo: PageInfo + submissions: [SubmissionEvent] +} + +type SubmissionFacts { + daily: SubmissionFactsDaily + startDate: Date + total: SubmissionFactsTotal + workflowId: Int +} + +type SubmissionFactsDaily { + avgHoursOnQueue: [DailyAvg] + completed: [DailyCount] + completedExceptionQueue: [DailyCount] + completedInReview: [DailyCount] + completedReviewQueue: [DailyCount] + predictions: [DailyCount] + rejectedInReview: [DailyCount] + stp: StpFactsDaily + submitted: [DailyCount] + submittedAndCompletedInReview: [DailyCount] + timeOnTask: TimeOnTaskDaily +} + +type SubmissionFactsTotal { + stp: StpFacts + submitted: Int +} + +type SubmissionFile { + "Name of original file" + filename: String + "Local URL to stored input" + filepath: String + "Unique ID of this file" + id: Int + "ID of the submission this file is associated with" + submissionId: Int +} + +type SubmissionMetric { + "Number of items completed in the workflow, whether review was enabled or disabled" + completed: Int + "Number of items accepted in the exceptions queue" + completedExceptionQueue: Int + "Number of items that were accepted in either the review or exceptions queue" + completedInReview: Int + "Number of items accepted in the review queue" + completedReviewQueue: Int + "Number of items rejected from the exceptions queue" + rejectedInReview: Int + "Number of items submitted to the workflow" + submitted: Int +} + +type SubmissionMetrics { + aggregate: SubmissionMetric + daily: [DailySubmissionMetric] +} + +type SubmissionPage { + pageInfo: PageInfo + submissions: [Submission] +} + +type SubmissionResult { + "Returned if submissions are duplicates" + isDuplicateRequest: Boolean + "Returned if submissions are not recorded" + jobIds: [String] + "Returned if submissions are recorded" + submissionIds: [Int] + submissions: [Submission] +} + +type SubmissionResults { + jobId: String +} + +type SubmissionRetry { + "Unique ID of the submission retry" + id: Int + "Errors from previous submission" + previousErrors: String + "Status of submission before it was retried" + previousStatus: SubmissionStatus + "Errors that occurred during the retrying of this submission" + retryErrors: String + "Unique ID of the associated submission" + submissionId: Int +} + +type SubmitAutoReview { + jobId: String +} + +type SubmitLabels { + success: Boolean +} + +type Subscription { + datasetCreated: Dataset + datasetDeleted: Dataset + datasetUpdated: Dataset +} + +type SuperMutation { + activateUser(id: Int!): User + activeFormFields(files: [FileInput]): ActiveFormFields + addDataCsv(datafileIds: [Int], datasetId: Int!): Dataset + addDataFiles(datafileIds: [Int], datasetId: Int!): Dataset + addDataToWorkflow(workflowId: Int!): AddDataToWorkflow + addDatasetFiles( + "Automatically process files that are uploaded and associated with the dataset" + autoprocess: Boolean = false, + datasetId: Int!, + metadataList: JSONString! + ): Dataset + addDatasetUser(datasetId: Int!, email: String!, role: Roles!): DatasetUser + addLabelsetTarget(labelsetId: Int!, targetName: String!): LabelSet + addQuestionnaireUser(id: Int!, userId: Int!): QuestionnaireUser + addTarget(questionnaireId: Int!, target: String!): Question + cancelModelTraining(modelId: Int!): CancelModelTraining + createDataset( + "Configurations for a dataset or datacolumn" + config: DataConfigInput, + datasetType: DatasetType, + "Name of the dataset to create" + name: String! + ): Dataset + createExport( + "Anonymize user information" + anonymous: Boolean = false, + columnIds: [Int], + "One row per example, combine labels from multiple labelers into a single row" + combineLabels: Boolean = false, + datasetId: Int!, + "Include datafile information" + fileInfo: Boolean = true, + labelsetIds: [Int], + name: String, + subsetIds: [Int] + ): Export + createFireGroup(datacolumnId: Int, datasetId: Int, filters: [FiltersInput], name: String, processors: [InputProcessor]): FireGroup + createModelGroup(datasetId: Int!, domain: FeatureDomainEnum, finetune: Boolean, interlabelerResolution: LabelResolutionStrategy, labelsetColumnId: Int, makePredictions: Boolean = false, modelTrainingOptions: JSONString, modelType: ModelType, name: String!, processors: [InputProcessor], rowIdx: [Int], sourceColumnId: Int!, subsetId: Int, testSplit: Float = 0.2): ModelGroup + createQuestionnaire( + "Enable predictions on the questionnaire" + activeLearning: Boolean = true, + dataType: DataType!, + datasetId: Int!, + "Always use Text Labeling UI" + forceTextMode: Boolean, + instructions: String, + modelTrainingOptions: JSONString, + modelType: ModelType, + name: String!, + numLabelersRequired: Int!, + "Create a new questionnaire from an existing labelset." + originalLabelsetId: Int, + processors: [InputProcessor], + questions: [QuestionInput]!, + "Show predictions at the global level" + showPredictions: Boolean = true, + sourceColumnId: Int!, + "User IDs to add to the questionnaire" + users: [Int] + ): Questionnaire + deactivateUser(id: Int!): User + deleteDataset(id: Int!): DeleteDataset + deleteDatasetFile(datasetId: Int!, fileId: Int!): Dataset + deleteDatasetUser(datasetId: Int!, userId: Int!): DeleteDatasetUser + deleteFireGroup(id: Int!): DeleteFireGroup + deleteModelGroup(modelGroupId: Int!): DeleteModelGroup + deleteQuestionnaire(id: Int!): DeleteQuestionnaire + deleteUserPreference(app: String!, key: String!): DeletePreference + documentExtraction(files: [FileInput], jsonConfig: JSONString): DocumentExtraction + """ + Example: + mutation generate_new_refresh_token { + GenerateNewApiRefreshToken{ + refresh_token + } + } + """ + generateNewApiRefreshToken: GenerateNewApiRefreshToken + generateResetLink(userId: Int!): GenerateResetLink + invalidateSessions(id: Int!): User + modelLoad(modelId: Int!): ModelLoad + modelPredict(data: [String], modelId: Int!, predictOptions: JSONString): ModelPredict + modifyDatasetUser(datasetId: Int!, role: Roles!, userId: Int!): DatasetUser + modifyScopes(id: Int!, scopes: [Scope]!): User + newDataset( + "DEPRECATED: Use kloudless uploader. If false, uses Nginx for local file uploads" + kloudless: Boolean = false, + metadataList: JSONString! + ): Dataset + optimizeModelGroup(makePredictions: Boolean, modelGroupId: Int!): ModelGroup + pdfExtraction(data: [String]!, images: Boolean, metadata: Boolean, pageFormat: String, rawText: Boolean, singleColumn: Boolean, tables: Boolean, text: Boolean): PDFExtraction + refreshViews( + "Force refresh views if the views were refreshed less than cooldown period ago." + force: Boolean = false + ): Refresh + removeQuestionnaireUser(id: Int!, userId: Int!): RemoveQuestionnaireUser + retrainModelGroup( + forceRetrain: Boolean, + interlabelerResolution: LabelResolutionStrategy, + modelGroupId: Int!, + "Can only be updated on retrain for extraction models." + modelType: ModelType + ): ModelGroup + retrySubmissions(submissionIds: [Int]!): [Submission] + retryUrl(datafileId: Int!, datasetId: Int!, newUrl: String!): Dataset + submissionReport( + "Get all submissions, given valid permissions" + allSubmissions: Boolean = false, + "Provide information about submissions, as they change over time" + changelog: Boolean = false, + filters: SubmissionLogFilter, + "Format of report to generate, defaults to CSV" + reportFormat: ReportFormat + ): GenerateSubmissionReport + submissionResults(submissionId: Int!): SubmissionResults + submitAutoReview( + changes: JSONString, + "Bypass Review/Exception queue (not recommended)" + forceComplete: Boolean = false, + rejected: Boolean = false, + submissionId: Int! + ): SubmitAutoReview + submitLabels( + datasetId: Int!, + labels: [SubmissionLabel]!, + labelsetId: Int!, + "Model group to retrain after label submission" + modelGroupId: Int + ): SubmitLabels + submitReview(changes: JSONString, notes: String, rejected: Boolean = false, submissionId: Int!): Review + toggleWorkflowAutoReview( + "All new submissions will wait for Auto Review" + enableAutoReview: Boolean!, + "If toggling auto review on, mark existing subs pending review as pending auto review. Ignore if toggling off" + updateExistingSubmissions: Boolean = false, + workflowId: Int! + ): Workflow @deprecated(reason : "Replaced by UpdateWorkflowMeta, toggling on workflow review settings update") + toggleWorkflowReview( + "If toggling review off, mark existing submissions waiting for review as complete. Ignored if toggling review on." + completeExistingSubmissions: Boolean = false, + "Place all future submissions into review queue" + enableReview: Boolean!, + workflowId: Int! + ): Workflow @deprecated(reason : "Replaced by UpdateWorkflowMeta, toggling on workflow review settings update") + unlockUser(id: Int!): User + updateDataset( + datasetId: Int!, + "New name of the dataset." + name: String + ): Dataset + updateFireGroup(filters: [FiltersInput], id: Int!, name: String): FireGroup + updateLabelset( + labelsetId: Int!, + "Minimum number of labelers required to label each example" + numLabelersRequired: Int + ): LabelSet + updateLabelsetTargetPositions(labelsetId: Int!, targetNames: [String]): LabelSet + updateModelGroupName(modelGroupId: Int!, name: String!): ModelGroup + updateModelGroupSettings(domain: FeatureDomainEnum, finetune: Boolean, interlabelerResolution: LabelResolutionStrategy, makePredictions: Boolean, modelGroupId: Int!, predictOptions: JSONString, rocAucAveraging: RocAucAveraging, samplingStrategy: SamplingStrategy, taskType: TaskType, testSplit: Float, wordPredictorStrength: WordPredictorStrength): ModelGroup + updateQuestionKeywords( + "Use keywords for all users" + globalPreference: Boolean = false, + keywords: [String]!, + questionnaireId: Int! + ): UpdateKeywords + updateQuestionnaire( + "Enable labeling tasks" + active: Boolean, + "Enable predictions on the questionnaire" + activeLearning: Boolean, + dataType: DataType, + id: Int!, + instructions: String, + name: String, + "Show predictions at the global level" + showPredictions: Boolean + ): Questionnaire + updateSubmission( + "Mark the submission as having been retrieved" + retrieved: Boolean, + submissionId: Int! + ): Submission + updateUser(name: String): User + updateUserPreference(app: String!, key: String!, value: JSONString!): Preference + updateWorkflowMeta( + "Estimated human time to complete the workflow in minutes" + estHumanTimeMins: Int, + name: String, + settings: ReviewSettingsInput, + workflowId: Int! + ): Workflow + userChangelogReport( + "Changelog up to this date (23:59 UTC)" + endDate: Date, + filters: UserReportFilter, + "Format of report to generate, defaults to CSV" + reportFormat: ReportFormat, + "Changelog from this date (00:00 UTC)" + startDate: Date + ): GenerateUserChangelogReport + userSnapshotReport( + "User information on this date (23:59 UTC)" + date: Date, + filters: UserReportFilter, + "Format of report to generate, defaults to CSV" + reportFormat: ReportFormat + ): GenerateUserSnapshotReport + workflowSubmission( + "Batch all files under a single submission" + bundle: Boolean = false, + "UUID for duplicate Submissions caching" + duplicationId: String, + files: [FileInput]!, + "Record submission for future use" + recordSubmission: Boolean = true, + "Submission output result file version" + resultVersion: SubmissionResultVersion, + workflowId: Int! + ): SubmissionResult + workflowUrlSubmission( + "Batch all urls under a single submission" + bundle: Boolean = false, + "UUID for duplicate Submissions caching" + duplicationId: String, + "Record submission for future use" + recordSubmission: Boolean = true, + "Submission output result file version" + resultVersion: SubmissionResultVersion, + urls: [String]!, + workflowId: Int! + ): SubmissionResult +} + +type SuperSchema { + allUsers( + "Find results after this cursor" + after: Int, + "Find results before this cursor" + before: Int, + "Return results in descending order" + desc: Boolean, + filters: UserFilter, + "Include scopes for each user" + includeScopes: Boolean, + "Max number of results to return" + limit: Int, + "attribute to order results by" + orderBy: USER_COLUMN_ENUM, + "number of pages to skip" + skip: Int + ): UserPage + checkoutSpecificSubmission(submissionId: Int!): Submission + datafile(datafileId: Int!): DataFile + datafiles(datafileIds: [Int]!): [DataFile] + dataset(id: Int): Dataset + datasets(permissions: [PermissionType]): [Dataset] + datasetsPage( + "Find results after this cursor" + after: Int, + "Find results before this cursor" + before: Int, + "Return results in descending order" + desc: Boolean, + filters: DatasetFilter, + "Max number of results to return" + limit: Int, + "attribute to order results by" + orderBy: DATASET_COLUMN_ENUM, + permissions: [PermissionType], + showAll: Boolean, + "number of pages to skip" + skip: Int + ): DatasetPage + exports( + "Find results after this cursor" + after: Int, + "Find results before this cursor" + before: Int, + columnIds: [Int], + datasetId: [Int], + "Return results in descending order" + desc: Boolean, + exportIds: [Int], + labelsetIds: [Int], + "Max number of results to return" + limit: Int, + "attribute to order results by" + orderBy: EXPORT_COLUMN_ENUM, + "number of pages to skip" + skip: Int, + subsetIds: [Int] + ): ExportPage + fireGroups( + "Find results after this cursor" + after: Int, + "Find results before this cursor" + before: Int, + datasetIds: [Int], + "Return results in descending order" + desc: Boolean, + filters: FireGroupFilter, + fireGroupIds: [Int], + "Max number of results to return" + limit: Int, + "attribute to order results by" + orderBy: FIREGROUP_COLUMN_ENUM, + "number of pages to skip" + skip: Int + ): FireGroupPage + fireSimilarity(fireGroupId: Int!, fireId: Int!, query: String!): [FireSimilarity] + ipaVersion: String + job(id: String): Job + modelGroup(modelGroupId: Int!): ModelGroup + modelGroups( + "Find results after this cursor" + after: Int, + "Find results before this cursor" + before: Int, + datasetIds: [Int], + "Return results in descending order" + desc: Boolean, + filters: ModelGroupFilter, + "Max number of results to return" + limit: Int, + modelGroupIds: [Int], + "attribute to order results by" + orderBy: MODELGROUP_COLUMN_ENUM, + "number of pages to skip" + skip: Int + ): ModelGroupPage + modelSimilarity(modelGroupId: Int!, modelId: Int!, query: String!): [ModelSimilarity] + oneUser(id: Int!): User + questionnaires( + "Find results after this cursor" + after: Int, + "Find results before this cursor" + before: Int, + datasetIds: [Int], + "Return results in descending order" + desc: Boolean, + filters: QuestionnaireFilter, + "Max number of results to return" + limit: Int, + "attribute to order results by" + orderBy: QUESTIONNAIRE_COLUMN_ENUM, + questionnaireIds: [Int], + "number of pages to skip" + skip: Int + ): QuestionnairePage + randomSubmission(adminReview: Boolean = false, workflowId: Int!): Submission + refresh: Refresh + searchDatapoint( + "Max result length including keyword and surrounding text" + context: Int, + datapointId: Int!, + "Use case-insensitive search" + ignoreCase: Boolean = true, + "Keyword to search the text for" + keyword: String!, + "Use a regex keyword to find matches in the text" + regex: Boolean + ): [TextSearchResult] + submission(id: Int!): Submission + submissions( + "Find results after this cursor" + after: Int, + "Find results before this cursor" + before: Int, + "Return results in descending order" + desc: Boolean, + filters: SubmissionFilter, + "Max number of results to return" + limit: Int, + "attribute to order results by" + orderBy: SUBMISSION_COLUMN_ENUM, + "number of pages to skip" + skip: Int, + submissionIds: [Int], + workflowIds: [Int] + ): SubmissionPage + submissionsLog( + "Find results after this cursor" + after: Int, + "Get all submissions, given valid permissions" + allSubmissions: Boolean = false, + "Find results before this cursor" + before: Int, + "Provide information about submissions, as they change over time" + changelog: Boolean = false, + "Return results in descending order" + desc: Boolean, + filters: SubmissionLogFilter, + "Max number of results to return" + limit: Int, + "attribute to order results by" + orderBy: SUBMISSIONEVENT_COLUMN_ENUM, + "number of pages to skip" + skip: Int + ): SubmissionEventPage + user: User + userChangelog( + "Find results after this cursor" + after: Int, + "Find results before this cursor" + before: Int, + "Return results in descending order" + desc: Boolean, + "Get changes on or before this day (23:59 UCT)" + endDate: Date, + filters: UserReportFilter, + "Max number of results to return" + limit: Int = 100, + "attribute to order results by" + orderBy: USERCHANGELOG_COLUMN_ENUM, + "number of pages to skip" + skip: Int, + "Get changes on or after this daye (00:00 UTC)" + startDate: Date + ): UserChangelogPage + userSnapshot( + "Find results after this cursor" + after: Int, + "Find results before this cursor" + before: Int, + "Snapshot of permissions at this date (23:59 UTC)" + date: Date, + "Return results in descending order" + desc: Boolean, + filters: UserReportFilter, + "Max number of results to return" + limit: Int = 100, + "attribute to order results by" + orderBy: USERSNAPSHOT_COLUMN_ENUM, + "number of pages to skip" + skip: Int + ): UserSnapshotPage + userSummary( + "User summary at this date (23:59 UTC)" + date: Date + ): UserSummary + workflows( + "Find results after this cursor" + after: Int, + "Find results before this cursor" + before: Int, + datasetIds: [Int], + "Return results in descending order" + desc: Boolean, + filters: WorkflowFilter, + "Max number of results to return" + limit: Int, + metricsStartDate: Date, + "attribute to order results by" + orderBy: WORKFLOW_COLUMN_ENUM, + role: Roles, + "number of pages to skip" + skip: Int, + workflowIds: [Int] + ): WorkflowPage +} + +type Target { + end: Int + label: String + start: Int + userId: Int +} + +type TargetName { + id: Int + labelsetId: Int + name: String + position: Int +} + +type TextSearchResult { + context: TextSearchResultSnippet + result: TextSearchResultSnippet +} + +type TextSearchResultSnippet { + "Exclusive end index in text" + end: Int + "Starting index in text" + start: Int + text: String +} + +type TimeOnTaskDaily { + exceptions: [DailyTimeOnTask] + review: [DailyTimeOnTask] +} + +type TimeOnTaskMetric { + "The average amount of minutes reviewers spend on documents for this workflow, aggregated across review and exceptions queue" + avgMinsPerDoc: Float + "The average amount of minutes reviewers spend on documents for this workflow in the exceptions queue" + avgMinsPerDocExceptions: Float + "The average amount of minutes reviewers spend on documents for this workflow in the review queue" + avgMinsPerDocReview: Float +} + +type TimeOnTaskMetrics { + aggregate: TimeOnTaskMetric + daily: [DailyTimeOnTaskMetric] +} + +type TokenPrediction { + confidences: [ClassConfidence] + token: _Token +} + +type TrainingProgress { + percentComplete: Float +} + +type UpdateKeywords { + keywords: [String] +} + +"Basic user object" +type User { + acceptedTerms: Boolean + accountLockedAt: DateTime + active: Boolean + apiRefreshToken: RefreshTokenMeta + "Epoch time of confirmation of user registration" + confirmedAt: String + confirmedDate: DateTime + email: String + id: Int + lastUpdate: String + lastUpdateDate: DateTime + logins( + "Find results after this cursor" + after: Int, + "Find results before this cursor" + before: Int, + "Return results in descending order" + desc: Boolean, + "Max number of results to return" + limit: Int, + "attribute to order results by" + orderBy: LOGIN_COLUMN_ENUM, + "number of pages to skip" + skip: Int + ): LoginPage + name: String + numManagedDatasets: Int + preferences(app: String!, keys: [String]): [Preference] + "Epoch time of user registration" + registeredAt: String + registeredDate: DateTime + sCity: String + sCountry: String + sState: String + sStreet: String + sStreet2: String + sZip: String + scopes: [ScopeAccess] +} + +type UserChangelog { + changesMade: [UserChangeType] + datasets: [DatasetRole] + date: DateTime + enabled: Boolean + "Unique combination of date and user_id" + id: String + previousDatasets: [DatasetRole] + previousRoles: [AppRole] + previouslyEnabled: Boolean + roles: [AppRole] + updatedBy: Int + updaterEmail: String + userEmail: String + userId: Int +} + +type UserChangelogPage { + pageInfo: PageInfo + results: [UserChangelog] +} + +type UserPage { + pageInfo: PageInfo + users: [User] +} + +type UserSnapshot { + createdAt: DateTime + datasets: [DatasetRole] + email: String + enabled: Boolean + id: Int + name: String + roles: [AppRole] +} + +type UserSnapshotPage { + pageInfo: PageInfo + results: [UserSnapshot] +} + +type UserSummary { + appRoles: [AppRoleCount] + users: EnabledCount +} + +type Workflow { + "DEPRECATED: Status of the Auto review queue" + autoReviewEnabled: Boolean @deprecated(reason : "Now uses settings' `auto_review_queue_enabled`") + "Time the workflow was created at" + createdAt: String + "ID of the user who created the workflow" + createdBy: Int + dataset: Dataset + "ID of the dataset the workflow is associated with" + datasetId: Int + docbots: [DocBot] + "Estimated human time to complete the workflow in minutes" + estHumanTimeMins: Int + "Unique ID of the workflow" + id: Int + metrics(endDate: Date, startDate: Date): WorkflowMetrics + name: String + "DEPRECATED: Status of the Review queue" + reviewEnabled: Boolean @deprecated(reason : "Now uses settings' `review_queue_enabled`") + reviewable: Boolean + reviewableModelGroups: [ModelGroup] + settings: ReviewSettings + "Current status of the workflow" + status: WorkflowStatus + submissionCounts: SubmissionCounts + submissionFacts: SubmissionFacts + "Time the workflow was last updated" + updatedAt: String + "ID of the user who last updated the workflow" + updatedBy: Int + userRole: Roles +} + +type WorkflowMetrics { + endDate: Date + "The first date an item was submitted to this workflow" + firstSubmittedDate: Date + predictions: PredictionMetrics + queues: QueueMetrics + startDate: Date + straightThroughProcessing: StpMetrics + submissions: SubmissionMetrics + timeOnTask: TimeOnTaskMetrics + workflowId: Int +} + +type WorkflowPage { + pageInfo: PageInfo + workflows: [Workflow] +} + +type WorkflowStpMetrics { + "Daily STP metrics aggregated to the level of the workflow" + daily: [DailyStpMetric] +} + +type _Token { + end: Int + start: Int + text: String +} + +"An enumeration." +enum ANNOTATIONEXAMPLE_COLUMN_ENUM { + ROW_ID + ROW_INDEX + TEXT +} + +"An enumeration." +enum AppRole { + APP_ADMIN + CELERY_FLOWER + MANAGE_ALL_DATA + TEAM_ADMIN + TEAM_DEVELOPER + TEAM_USER +} + +"An enumeration." +enum ComponentType { + CUSTOM_RESULT + DOCUMENT + FIRE_GROUP + MODEL_GROUP + QUESTIONNAIRE + RESULT +} + +"An enumeration." +enum DATASET_COLUMN_ENUM { + CREATED_AT + CREATED_BY + DEFAULT_SUBSET_ID + ERROR_INFO + ID + NAME + NUM_FIRE_GROUPS + NUM_MODEL_GROUPS + NUM_QUESTIONNAIRES + ROW_COUNT + STATUS + TYPE + UPDATED_AT + UPDATED_BY +} + +enum DataType { + IMAGE + TEXT +} + +"An enumeration." +enum DataTypes { + CATEGORICAL + IMAGE + NUMERIC + STRING + UNKNOWN +} + +"An enumeration." +enum DatasetStatus { + COMPLETE + CREATING + DELETING + FAILED + PROCESSED + STAGED + UPLOADING +} + +"An enumeration." +enum DatasetType { + DOCUMENT + IMAGE + TEXT +} + +"An enumeration." +enum DocBotType { + DATASET + ETL + FIRE_GROUP + MODEL_GROUP + OUTPUT + QUESTIONNAIRE +} + +"An enumeration." +enum EXPORT_COLUMN_ENUM { + ANONYMOUS + CREATED_AT + CREATED_BY + DATASET_ID + DOWNLOAD_URL + ID + NAME + NUM_LABELS + STATUS +} + +enum ExampleOrder { + DATAFILE_NAME + ROW_INDEX + STATUS + UPDATED_AT +} + +"An enumeration." +enum ExampleStatus { + COMPLETE + INCOMPLETE + REJECTED +} + +"An enumeration." +enum ExportStatus { + COMPLETE + FAILED + STARTED +} + +"An enumeration." +enum FIREGROUP_COLUMN_ENUM { + CREATED_AT + CREATED_BY + DATACOLUMN_ID + DATASET_ID + FEATURECOLUMN_ID + ID + NAME + NUM_ROWS + READY + STATUS + SUBSET_ID + UPDATED_AT + UPDATED_BY +} + +"An enumeration." +enum FeatureDomainEnum { + EMOTION + ENSEMBLE + FASTTEXT + FINANCE + IMAGE_ENSEMBLE + IMAGE_V2 + IMAGE_V3 + IMAGE_V4 + SENTIMENT + STANDARD + STANDARD_V2 + TOPICS + UNSUPERVISEDSENTIMENT +} + +"An enumeration." +enum FileFailureType { + CORRUPT_IMAGE + CSV_MULTIPLE_URLS + CSV_NO_URL_DS_TYPE_DOCUMENT + CSV_NO_URL_DS_TYPE_IMAGE + CSV_PARSING + CSV_REQUIRES_CONTENT + DOWNLOAD + EXTRACTION + INCOMPATIBLE_CSV_COLUMNS + INCOMPATIBLE_TYPE + SERVER + UNSUPPORTED_TYPE +} + +"An enumeration." +enum FileStatus { + DOWNLOADED + DOWNLOADING + EXTRACTED + EXTRACTING + FAILED + PROCESSED + PROCESSING +} + +"An enumeration." +enum FileType { + CSV + DOC + DOCX + EXCEL + JPG + PDF + PNG + PPT + PPTX + TIFF + UNKNOWN +} + +"An enumeration." +enum FireStatus { + COMPLETE + CREATING + FAILED +} + +"Adapted from Celery Task Status" +enum JobStatus { + FAILURE + IGNORED + PENDING + RECEIVED + REJECTED + RETRY + REVOKED + STARTED + SUCCESS + TRAILED +} + +"An enumeration." +enum LOGIN_COLUMN_ENUM { + ID + LOGIN_IP +} + +"An enumeration." +enum LabelResolutionStrategy { + ALL + MAJORITY_VOTE_WITHOUT_TIES + MAJORITY_VOTE_WITH_TIES + UNANIMOUS +} + +"An enumeration." +enum LanguageCode { + DUT + ENG + FRE + GER + ITA + POL + POR + SPA +} + +"An enumeration." +enum MODELGROUP_COLUMN_ENUM { + CREATED_AT + CREATED_BY + DATASET_ID + DATA_TYPE + ID + INTERLABELER_RESOLUTION + LABELSET_COLUMN_ID + NAME + QUESTIONNAIRE_ID + RETRAIN_REQUIRED + SOURCE_COLUMN_ID + STATUS + SUBSET_ID + TASK_TYPE + UPDATED_AT + UPDATED_BY + WORKFLOW_ID +} + +"An enumeration." +enum ModelStatus { + COMPLETE + CREATING + FAILED + NOT_ENOUGH_DATA + TRAINING +} + +"An enumeration." +enum ModelType { + DOCUMENT + ENSEMBLE + FINETUNE + FORM_EXTRACTION + OBJECT_DETECTION + RATIONALIZED + STANDARD + TFIDF + TFIDF_GBT + TFIDF_LR +} + +"An enumeration." +enum PermissionType { + ADD_ADMIN_REVIEW + ADD_LABEL + ADD_REVIEW + CREATE_SUBMISSION + DELETE_DATASET + FEATURIZE + MANAGE_USERS + MODIFY_METADATA + READ_DATAPOINTS + READ_LABELS + READ_METADATA + READ_SUBMISSIONS + READ_USERS +} + +"An enumeration." +enum ProcessorType { + CONTENT_LENGTH + INPUT_IMAGE + INPUT_OCR_EXTRACTION + LINK_CLASSIFICATION_MODEL + OUTPUT_CSV_FORMATTER + OUTPUT_JSON_FORMATTER + SPLIT + VALIDATION +} + +"An enumeration." +enum QUESTIONNAIRE_COLUMN_ENUM { + ACTIVE + ACTIVE_LEARNING + CREATED_AT + CREATED_BY + DATASET_ID + DATA_TYPE + FORCE_TEXT_MODE + ID + INSTRUCTIONS + NAME + NUM_FULLY_LABELED + NUM_LABELED_BY_ME + NUM_REJECTED + NUM_TOTAL_EXAMPLES + ODL + QUESTIONS_STATUS + ROLE + SHOW_PREDICTIONS + SOURCE_COLUMN_ID + SUBSET_ID + UPDATED_AT + UPDATED_BY +} + +"An enumeration." +enum QuestionStatus { + COMPLETE + FAILED + STARTED +} + +"An enumeration." +enum ReportFormat { + CSV + JSON +} + +"An enumeration." +enum ReviewType { + ADMIN + AUTO + MANUAL +} + +"An enumeration." +enum RocAucAveraging { + SIMPLE + WEIGHTED +} + +"An enumeration." +enum Roles { + ANALYST + LABELER + LABELER_AND_REVIEWER + MANAGER + REVIEWER +} + +"An enumeration." +enum SUBMISSIONEVENT_COLUMN_ENUM { + COMPLETED_AT + CREATED_AT + CREATED_BY + DATASET_ID + DELETED + ERRORS + ID + INPUT_FILE + INPUT_FILENAME + RESULT_FILE + RETRIEVED + STATUS + SUBMISSION_ID + UPDATED_AT + UPDATED_BY + WORKFLOW_ID + _AUTO_REVIEW_LOADED +} + +"An enumeration." +enum SUBMISSION_COLUMN_ENUM { + COMPLETED_AT + CREATED_AT + CREATED_BY + DATASET_ID + DELETED + ERRORS + ID + INPUT_FILE + INPUT_FILENAME + RESULT_FILE + RETRIEVED + STATUS + UPDATED_AT + UPDATED_BY + WORKFLOW_ID + _AUTO_REVIEW_LOADED +} + +"An enumeration." +enum SamplingStrategy { + NO_SAMPLING + RANDOM_OVERSAMPLE +} + +"An enumeration." +enum Scope { + APP_ACCESS + BASE + CELERY_FLOWER + CHANGE_PASSWORD + CONFIRM_ACCOUNT + GRAPHIQL + MANAGE_ALL_DATA + MANAGE_DATASET + MANAGE_USERS + METRICS + REFRESH_TOKEN + USER_INFORMATION +} + +"An enumeration." +enum SubmissionResultVersion { + LATEST + OLDEST_SUPPORTED + ONE + TWO +} + +"An enumeration." +enum SubmissionStatus { + COMPLETE + FAILED + PENDING_ADMIN_REVIEW + PENDING_AUTO_REVIEW + PENDING_REVIEW + PROCESSING +} + +"An enumeration." +enum TableReadOrder { + COLUMN + ROW +} + +"An enumeration." +enum TaskType { + ANNOTATION + CLASSIFICATION + CLASSIFICATION_MULTIPLE + FORM_EXTRACTION + OBJECT_DETECTION + RATIONALIZED_CLASSIFICATION + REGRESSION +} + +"An enumeration." +enum USERCHANGELOG_COLUMN_ENUM { + DATE + ENABLED + ID + PREVIOUSLY_ENABLED + UPDATED_BY + UPDATER_EMAIL + USER_EMAIL + USER_ID +} + +"An enumeration." +enum USERSNAPSHOT_COLUMN_ENUM { + CREATED_AT + EMAIL + ENABLED + ID + NAME +} + +"An enumeration." +enum USER_COLUMN_ENUM { + ACCEPTED_TERMS + ACCOUNT_LOCKED_AT + ACTIVE + CONFIRMED_AT + CONFIRMED_DATE + EMAIL + ID + LAST_UPDATE + LAST_UPDATE_DATE + NAME + NUM_MANAGED_DATASETS + REGISTERED_AT + REGISTERED_DATE + S_CITY + S_COUNTRY + S_STATE + S_STREET + S_STREET2 + S_ZIP +} + +"An enumeration." +enum UserChangeType { + APP_ROLE + DATASET_ROLE + ENABLEMENT +} + +"An enumeration." +enum WORKFLOW_COLUMN_ENUM { + AUTO_REVIEW_ENABLED + CREATED_AT + CREATED_BY + DATASET_ID + EST_HUMAN_TIME_MINS + ID + NAME + REVIEWABLE + REVIEW_ENABLED + STATUS + UPDATED_AT + UPDATED_BY + USER_ROLE +} + +"An enumeration." +enum WordPredictorStrength { + MODERATE + STRONG + WEAK +} + +"An enumeration." +enum WorkflowStatus { + ADDING_DATA + COMPLETE +} + +"Date" +scalar Date + +"DateTime" +scalar DateTime + +"DateTimeISO" +scalar DateTimeISO + +"InputDate" +scalar InputDate + +"JSONString" +scalar JSONString + +"Data processing configurations for dataset" +input DataConfigInput { + ocrOptions: OCROptionsInput +} + +input DatasetFilter { + AND: [DatasetFilter] + OR: [DatasetFilter] + ands: [DatasetFilter] + "name contains" + name: String + ors: [DatasetFilter] +} + +input DateRangeFilter { + "The starting time to search from" + from: InputDate + "The ending time to search until" + to: InputDate +} + +input ExampleFilter { + "Examples for datafile names containing this string" + fileName: String + "Examples for datafiles of these file types" + fileType: [FileType] +} + +input FileInput { + filemeta: JSONString + filename: String +} + +input FiltersInput { + labels: [String]! + predictionLabelsetId: Int + targetLabelsetId: Int +} + +input FireGroupFilter { + AND: [FireGroupFilter] + OR: [FireGroupFilter] + ands: [FireGroupFilter] + "name contains" + name: String + ors: [FireGroupFilter] +} + +input InputProcessor { + args: JSONString + processorType: ProcessorType! +} + +input ModelGroupFilter { + AND: [ModelGroupFilter] + OR: [ModelGroupFilter] + ands: [ModelGroupFilter] + "name contains" + name: String + ors: [ModelGroupFilter] + "model group subset id is" + subsetId: Int + "model group task type is" + taskType: TaskType +} + +"OCR options for dataset" +input OCROptionsInput { + "Auto rotate" + autoRotate: Boolean + "Return table information for post-processing rules" + cells: Boolean + "Force render" + forceRender: Boolean + "List of languages to use" + languages: [LanguageCode] + "Native layout" + nativeLayout: Boolean + "Native PDF" + nativePdf: Boolean + "Read table as a single column" + singleColumn: Boolean + "Read table in row or column order" + tableReadOrder: TableReadOrder +} + +input QuestionInput { + keywords: [String] + labelsetId: Int + modelGroupId: Int + targets: [String]! + "Help text for question" + text: String + type: TaskType! +} + +input QuestionnaireFilter { + AND: [QuestionnaireFilter] + OR: [QuestionnaireFilter] + ands: [QuestionnaireFilter] + "name contains" + name: String + ors: [QuestionnaireFilter] +} + +input ReviewSettingsInput { + "Enable the Auto review queue" + autoReviewQueueEnabled: Boolean + "Add value to Exceptions queue submissions in the workflow" + exceptionsQueueAddValueEnabled: Boolean + "Enable the Exceptions queue" + exceptionsQueueEnabled: Boolean + "Add a rejection reason to review queue submissions in the workflow" + exceptionsQueueRejectionReasonRequired: Boolean + "If toggling exceptions queue off, mark existing subs pending admin review as complete. Ignored if toggling exceptions on" + migratePendingAdminReviewToComplete: Boolean = false + "If toggling review off, mark existing submissions waiting for review as complete. Ignored if toggling review on." + migratePendingReviewToComplete: Boolean = false + "If toggling auto review on, mark existing subs pending review as pending auto review. Ignore if toggling off" + migratePendingReviewToPendingAutoReview: Boolean = false + "Add value to Review queue submissions in the workflow" + reviewQueueAddValueEnabled: Boolean + "Enable the Review queue. If disabled, disables the Exceptions and Auto review queue" + reviewQueueEnabled: Boolean + "Add a rejection reason to Review queue submissions in the workflow" + reviewQueueRejectionReasonRequired: Boolean + "Required number of reviewers per submission in the workflow" + reviewQueueReviewersRequired: Int +} + +input SubmissionFilter { + AND: [SubmissionFilter] + OR: [SubmissionFilter] + ands: [SubmissionFilter] + "input filename contains" + inputFilename: String + ors: [SubmissionFilter] + "Submission has been marked as having been retrieved" + retrieved: Boolean + "submission status is" + status: SubmissionStatus +} + +input SubmissionLabel { + "Must be supplied when rejected is not None and the labelset came from an uploaded csv" + datapointId: Int + "DON’T USE THIS UNTIL 4.14 - OLD, BAD THING" + deleted: Boolean + "Must be manager or analyst to use. Required True if rejected is False (unrejecting an example) or if submitting a label as a user who already submitted a label" + override: Boolean + "True if rejecting an example. Rejecting an example will remove it from all associated labelsets and teach tasks. Set to False to unreject an example and make it available for labeling again." + rejected: Boolean + "Row index of the label to be changed" + rowIndex: Int! + "Encoded representation of target" + target: JSONString +} + +input SubmissionLogFilter { + AND: [SubmissionLogFilter] + OR: [SubmissionLogFilter] + ands: [SubmissionLogFilter] + createdAt: DateRangeFilter + "List of submission IDs to filter by" + id: [Int] + ors: [SubmissionLogFilter] + "Status of the submission process to filter by" + status: SubmissionStatus + updatedAt: DateRangeFilter + "List of workflow IDs to filter by" + workflowId: [Int] +} + +input UserFilter { + AND: [UserFilter] + OR: [UserFilter] + ands: [UserFilter] + "email contains" + email: String + "name contains" + name: String + ors: [UserFilter] +} + +input UserReportFilter { + AND: [UserReportFilter] + OR: [UserReportFilter] + ands: [UserReportFilter] + ors: [UserReportFilter] + "User email in this list" + userEmail: [String] + "User id in this list" + userId: [Int] +} + +input WorkflowFilter { + AND: [WorkflowFilter] + OR: [WorkflowFilter] + ands: [WorkflowFilter] + "all new submissions will wait for Auto Review" + autoReviewEnabled: Boolean + "name contains" + name: String + ors: [WorkflowFilter] + "all new submissions will pass through Review" + reviewEnabled: Boolean + "the workflow can use Review for its submissions" + reviewable: Boolean +} diff --git a/src/test/data/1.jpg b/src/test/data/1.jpg new file mode 100644 index 0000000..ada2e37 Binary files /dev/null and b/src/test/data/1.jpg differ diff --git a/src/test/data/10.jpg b/src/test/data/10.jpg new file mode 100644 index 0000000..f2d51fb Binary files /dev/null and b/src/test/data/10.jpg differ diff --git a/src/test/data/11.jpg b/src/test/data/11.jpg new file mode 100644 index 0000000..c135086 Binary files /dev/null and b/src/test/data/11.jpg differ diff --git a/src/test/data/12.jpg b/src/test/data/12.jpg new file mode 100644 index 0000000..4f9d8b6 Binary files /dev/null and b/src/test/data/12.jpg differ diff --git a/src/test/data/13.jpg b/src/test/data/13.jpg new file mode 100644 index 0000000..01a546f Binary files /dev/null and b/src/test/data/13.jpg differ diff --git a/src/test/data/14.jpg b/src/test/data/14.jpg new file mode 100644 index 0000000..240bbde Binary files /dev/null and b/src/test/data/14.jpg differ diff --git a/src/test/data/15.jpg b/src/test/data/15.jpg new file mode 100644 index 0000000..30de8d5 Binary files /dev/null and b/src/test/data/15.jpg differ diff --git a/src/test/data/16.jpg b/src/test/data/16.jpg new file mode 100644 index 0000000..1b1c1bc Binary files /dev/null and b/src/test/data/16.jpg differ diff --git a/src/test/data/17.jpg b/src/test/data/17.jpg new file mode 100644 index 0000000..b08f150 Binary files /dev/null and b/src/test/data/17.jpg differ diff --git a/src/test/data/18.jpg b/src/test/data/18.jpg new file mode 100644 index 0000000..17a896c Binary files /dev/null and b/src/test/data/18.jpg differ diff --git a/src/test/data/19.jpg b/src/test/data/19.jpg new file mode 100644 index 0000000..13850af Binary files /dev/null and b/src/test/data/19.jpg differ diff --git a/src/test/data/2.jpg b/src/test/data/2.jpg new file mode 100644 index 0000000..94d30dd Binary files /dev/null and b/src/test/data/2.jpg differ diff --git a/src/test/data/20.jpg b/src/test/data/20.jpg new file mode 100644 index 0000000..d49c8eb Binary files /dev/null and b/src/test/data/20.jpg differ diff --git a/src/test/data/21.jpg b/src/test/data/21.jpg new file mode 100644 index 0000000..54f472c Binary files /dev/null and b/src/test/data/21.jpg differ diff --git a/src/test/data/22.jpg b/src/test/data/22.jpg new file mode 100644 index 0000000..35f7872 Binary files /dev/null and b/src/test/data/22.jpg differ diff --git a/src/test/data/23.jpg b/src/test/data/23.jpg new file mode 100644 index 0000000..55f9dbf Binary files /dev/null and b/src/test/data/23.jpg differ diff --git a/src/test/data/24.jpg b/src/test/data/24.jpg new file mode 100644 index 0000000..aebf622 Binary files /dev/null and b/src/test/data/24.jpg differ diff --git a/src/test/data/25.jpg b/src/test/data/25.jpg new file mode 100644 index 0000000..06f1ba9 Binary files /dev/null and b/src/test/data/25.jpg differ diff --git a/src/test/data/3.jpg b/src/test/data/3.jpg new file mode 100644 index 0000000..7ad4319 Binary files /dev/null and b/src/test/data/3.jpg differ diff --git a/src/test/data/4.jpg b/src/test/data/4.jpg new file mode 100644 index 0000000..55e8436 Binary files /dev/null and b/src/test/data/4.jpg differ diff --git a/src/test/data/5.jpg b/src/test/data/5.jpg new file mode 100644 index 0000000..82a1979 Binary files /dev/null and b/src/test/data/5.jpg differ diff --git a/src/test/data/6.jpg b/src/test/data/6.jpg new file mode 100644 index 0000000..f1306ea Binary files /dev/null and b/src/test/data/6.jpg differ diff --git a/src/test/data/7.jpg b/src/test/data/7.jpg new file mode 100644 index 0000000..8adae01 Binary files /dev/null and b/src/test/data/7.jpg differ diff --git a/src/test/data/8.jpg b/src/test/data/8.jpg new file mode 100644 index 0000000..7d83abc Binary files /dev/null and b/src/test/data/8.jpg differ diff --git a/src/test/data/9.jpg b/src/test/data/9.jpg new file mode 100644 index 0000000..1729681 Binary files /dev/null and b/src/test/data/9.jpg differ diff --git a/src/test/data/AirlineComplaints.csv b/src/test/data/AirlineComplaints.csv new file mode 100644 index 0000000..c637f07 --- /dev/null +++ b/src/test/data/AirlineComplaints.csv @@ -0,0 +1,2795 @@ +Text,ID,Target_1 +Your service is so bad.,0,You are threatening to never to use this airline again +I will never use this airline again.,1,You are threatening to never to use this airline again +"BECAUSE THEY TREAT ME SO EVIL, I WILL NOT USE THIS COMPANY TO STOP FLYING",2,You are threatening to never to use this airline again +If I have to pay any additional fees I will not fly more for this company.,3,You are threatening to never to use this airline again +"If you do not give me what I'm asking for, I'll book another flight with another airline",4,You are threatening to never to use this airline again +not only that they should improve the service,5,You are threatening to never to use this airline again +I will never use this company again!,6,You are threatening to never to use this airline again +I this flight do not like!,7,You are threatening to never to use this airline again +"No volvere a usar esta aerolínea, Porque aparecen cargos adicionales?",8,You are threatening to never to use this airline again +What other airlines do you recommend?,9,You are threatening to never to use this airline again +This is a really bad service!,11,You are threatening to never to use this airline again +"Yes, because of the bad service they gave me",12,You are threatening to never to use this airline again +I think I will never use this airline again.,13,You are threatening to never to use this airline again +I will not travel again in this airline are irresponsible,14,You are threatening to never to use this airline again +Will this airline improve its service?,15,You are threatening to never to use this airline again +hi could you please tell me again the information that i did not understand,16,You are threatening to never to use this airline again +i can find another airline,17,You are threatening to never to use this airline again +To who do I talk to- I'd never to use this airline again!,18,You are threatening to never to use this airline again +"i dont what to fly this airfly, what happened?",20,You are threatening to never to use this airline again +"No, I'm not threatening, I'm actually gonna change this airline",21,You are threatening to never to use this airline again +I am so disappointed that I would consider not to use or recommend this airline in the future,23,You are threatening to never to use this airline again +it's complacted really why ?,25,You are threatening to never to use this airline again +do not fly again with you ever,26,You are threatening to never to use this airline again +Are taxis available to book right now?,27,You are threatening to never to use this airline again +I'm threatening to never use this airline,29,You are threatening to never to use this airline again +i won't use this airline agian,31,You are threatening to never to use this airline again +I warn you I will not use this airline again.,32,You are threatening to never to use this airline again +Why are you being threatened not to travel again?,33,You are threatening to never to use this airline again +I will never fly with you,34,You are threatening to never to use this airline again +I will never use this airline again,37,You are threatening to never to use this airline again +I will never use this airline again,38,You are threatening to never to use this airline again +How much money will I get if you lose my luggage?,39,You are threatening to never to use this airline again +I booked my flight on the wrong day. Can I change it?,40,You booked a flight for the wrong day and need to change it +when there are flights available,41,You booked a flight for the wrong day and need to change it +I would like to change the date of my flight.,42,You booked a flight for the wrong day and need to change it +What is your rules on rebooking?,43,You booked a flight for the wrong day and need to change it +Can I change the flight date?,44,You booked a flight for the wrong day and need to change it +"My flight is to date wrong, please repair.",46,You booked a flight for the wrong day and need to change it +I have booked a wrong trip. Can I change it?,47,You booked a flight for the wrong day and need to change it +"I booked a flight and it is not correct, how do I change it?",48,You booked a flight for the wrong day and need to change it +"Hello, I would like to change my flight, my girlfriend has the wrong date, is it possible to do it?",49,You booked a flight for the wrong day and need to change it +ı need an important job to do,51,You booked a flight for the wrong day and need to change it +I would like to change the day of my flight,53,You booked a flight for the wrong day and need to change it +fine for changing flight day,54,You booked a flight for the wrong day and need to change it +hi could you please tell me again the information that i did not understand,55,You booked a flight for the wrong day and need to change it +I need to change my flight due to an error that occurred when I purchased it,56,You booked a flight for the wrong day and need to change it +I need to change the day of the booked flight,57,You booked a flight for the wrong day and need to change it +can you cancel my flight cause it s wrong ?,58,You booked a flight for the wrong day and need to change it +how can i change my flight?,59,You booked a flight for the wrong day and need to change it +please tell me how to change the mistake in the booked flight for the wrong day,60,You booked a flight for the wrong day and need to change it +"Please, I want to change my booking.",62,You booked a flight for the wrong day and need to change it +good excuse I need to change my ticket date,63,You booked a flight for the wrong day and need to change it +hi could you please tell me again the information that i did not understand,64,You booked a flight for the wrong day and need to change it +can i change the date ?,65,You booked a flight for the wrong day and need to change it +No I booked it on the right day you need to check your database for the mistake.,67,You booked a flight for the wrong day and need to change it +I need another ticker,68,You booked a flight for the wrong day and need to change it +How can I change my flight reservation?,69,You booked a flight for the wrong day and need to change it +Can I reissue the ticket for the date I need?,70,You booked a flight for the wrong day and need to change it +I want to change the date of my trip,73,You booked a flight for the wrong day and need to change it +"Sorry, I just realized that I have booked my flight for a wrong day, can you help me to reschedule it?",74,You booked a flight for the wrong day and need to change it +i want to change the flight day please,75,You booked a flight for the wrong day and need to change it +How can I reschedule my flight for another date?,76,You booked a flight for the wrong day and need to change it +Could they change my flight ticket for another day ??,77,You booked a flight for the wrong day and need to change it +i booked a flight for the wrong day can i change it ?,78,You booked a flight for the wrong day and need to change it +I would like a partial refund as the flight was very bad,80,You had a bad flight and want some money back +"I am very unhappy with the service of the airline and demand a refund, to whom should I go?",81,You had a bad flight and want some money back +"I would like to return money for a bad flight, how to do it?",82,You had a bad flight and want some money back +I had a bad experience on the plane and would like some money back,83,You had a bad flight and want some money back +"I want to make up for the disadvantages of the trip,can i?",85,You had a bad flight and want some money back +I'd like to return the money!,87,You had a bad flight and want some money back +"I had a bad flight, can I get my money back?",88,You had a bad flight and want some money back +"Volar con uds me ha enfermado, a quien me dirijo para evitar que los demande?",90,You had a bad flight and want some money back +hi could you please tell me again the information that i did not understand,91,You had a bad flight and want some money back +Where is the complaint department,92,You had a bad flight and want some money back +I need a compensation for the bad flight we had.,94,You had a bad flight and want some money back +What happened to him on the flight?,95,You had a bad flight and want some money back +hi could you please tell me again the information that i did not understand,96,You had a bad flight and want some money back +it was a terrible flight I think they should give us back the money,97,You had a bad flight and want some money back +my fllight was horrible i want my money back,98,You had a bad flight and want some money back +I need a compensation for a bad flight,99,You had a bad flight and want some money back +i want to money back please help me?,100,You had a bad flight and want some money back +I would like a compensation,103,You had a bad flight and want some money back +Can you help me get a new flight?,105,You had a bad flight and want some money back +"I stumbled, I needed some money, please",106,You had a bad flight and want some money back +The flight was terrible. Can you give some of my money back?,107,You had a bad flight and want some money back +I want a refund for bad experience.,108,You had a bad flight and want some money back +My flight was not to my liking and I would like some sort of recompensation.,111,You had a bad flight and want some money back +I had a terrible flight and I want my money back.,112,You had a bad flight and want some money back +"I miss the flight, I expect the refund or some compensation",113,You had a bad flight and want some money back +"it was bad, I'm coming back, I need a refund",114,You had a bad flight and want some money back +Had a bad flight now I need a refund,115,You had a bad flight and want some money back +Where can I fill the form for money returning?,116,You had a bad flight and want some money back +The flight was so bored that I never enjoy any of the services,117,You had a bad flight and want some money back +I had a bad flight I need money,118,You had a bad flight and want some money back +i missed my flight and need another asap,120,You missed a very important flight and need one as soon as possible +I need a ticket for next possible flight.,121,You missed a very important flight and need one as soon as possible +"I missed my flight, I need next one as soon as possible.",122,You missed a very important flight and need one as soon as possible +I LOST MY FLIGHT AND I NEED TO REACH MY DESTINY WHAT I SHOULD DO,123,You missed a very important flight and need one as soon as possible +I missed my trip and wanted to book at the earliest available flight,124,You missed a very important flight and need one as soon as possible +I need to get the soonest flight possible.,125,You missed a very important flight and need one as soon as possible +I need urgently to fly,126,You missed a very important flight and need one as soon as possible +"I would like to request a flight to the same destination and as soon as possible, I missed the flight that just left, please.",127,You missed a very important flight and need one as soon as possible +I need to fly as soon as possible,129,You missed a very important flight and need one as soon as possible +Can you help me get a new flight?,131,You missed a very important flight and need one as soon as possible +I missed an important flight and I do need one ASAP,132,You missed a very important flight and need one as soon as possible +"I lost my flight, which is the next one that leaves",133,You missed a very important flight and need one as soon as possible +"get me a last minute ticket, how much is a last minute ticket?",134,You missed a very important flight and need one as soon as possible +hi could you please tell me again the information that i did not understand,135,You missed a very important flight and need one as soon as possible +"I lost my flight, I could have the first one available",136,You missed a very important flight and need one as soon as possible +Can you assist me to sign up for a frequent flyer program?,137,You missed a very important flight and need one as soon as possible +"i missed my flight and i want instant one as possible, please",139,You missed a very important flight and need one as soon as possible +Can you help me get a new flight? IT IS URGENT,140,You missed a very important flight and need one as soon as possible +Can you arrange an emergency flight ?,141,You missed a very important flight and need one as soon as possible +What is the nearest flight time?,142,You missed a very important flight and need one as soon as possible +Can you help me get a new flight?,143,You missed a very important flight and need one as soon as possible +I would like to reschedule my flight as soon as possible,144,You missed a very important flight and need one as soon as possible +hi could you please tell me again the information that i did not understand,145,You missed a very important flight and need one as soon as possible +Can you help me get a new flight?,146,You missed a very important flight and need one as soon as possible +I need a trip as soon as possible,148,You missed a very important flight and need one as soon as possible +"I delayed by traffic, and lost my flight, will there be one soon?",149,You missed a very important flight and need one as soon as possible +Can you help me to get another flight as soon as possible? I missed my flight.,150,You missed a very important flight and need one as soon as possible +"I get sick and can not travel, give me the next flight",151,You missed a very important flight and need one as soon as possible +when is the next flight ?,153,You missed a very important flight and need one as soon as possible +Could you find a new flight to my destiny?,154,You missed a very important flight and need one as soon as possible +Could you help me get an emergency flight today?,155,You missed a very important flight and need one as soon as possible +I need a flight as soon as possible,156,You missed a very important flight and need one as soon as possible +"Gostaria de um novo voo pois perdi o meu, o que faço?",157,You missed a very important flight and need one as soon as possible +can i book another flight?,158,You missed a very important flight and need one as soon as possible +I need to change my flight,159,You need to change your flight +I want to change my flight.,160,You need to change your flight +I need to change my flight. Can you help me?,161,You need to change your flight +I need to change my flight. Can you help me?,162,You need to change your flight +"I would like to change the date of departure, can You help me?",163,You need to change your flight +there are more options as to the itinerary of this flight,165,You need to change your flight +IS MANDATORY FOR MY CHANGE OF FLIGHT CAN I?,166,You need to change your flight +I need to get a different flight.,167,You need to change your flight +Do I really need to change my flight?,168,You need to change your flight +can i change my flight time?,169,You need to change your flight +Can I change for another trip?,170,You need to change your flight +yes for personal reasons,171,You need to change your flight +"Yes, because of health problems",172,You need to change your flight +"I have some health problems, is it possible to change the flight?",173,You need to change your flight +Can I change my flight?,174,You need to change your flight +I must change my flight.,175,You need to change your flight +"Sorry, I would like to change your flight",176,You need to change your flight +I would like to change your flight.,177,You need to change your flight +"Hello, I'd like to change my flight, is it possible?",179,You need to change your flight +que debo hacer para cambiar mi vuelo?,180,You need to change your flight +I need to change my flight,181,You need to change your flight +Hi there was a problem and i need to change my flight,184,You need to change your flight +Where can I change the flight?,185,You need to change your flight +no it's good like that,186,You need to change your flight +Could you help me change my flight please?,187,You need to change your flight +I need to change my flight.,188,You need to change your flight +"Hi, i need to change my flight, is it possible?",189,You need to change your flight +I would like to change my flight,190,You need to change your flight +I would like to change my flight,191,You need to change your flight +what flight times are available to change mine,192,You need to change your flight +hi could you please tell me again the information that i did not understand,193,You need to change your flight +hi could you please tell me again the information that i did not understand,194,You need to change your flight +I would like to change my flight,195,You need to change your flight +excuse me i need change my flight,196,You need to change your flight +Help me to change my flight,197,You need to change your flight +Help me to change my flight?,198,You need to change your flight +i need change my flight,201,You need to change your flight +I have to change my fly?,202,You need to change your flight +What do you want to change to?,204,You need to change your flight +i need to change my flight so can u tell me the other date,205,You need to change your flight +Hi! I need to change my flight. Can you help me?,206,You need to change your flight +"I need to change my flight, can you help me?",207,You need to change your flight +i want to change my flight ?,209,You need to change your flight +I need to know if there is availability to change my flight,211,You need to change your flight +I would like to change my flight,212,You need to change your flight +Can you help me get a new flight?,214,You need to change your flight +Are taxis available to book right now?,215,You need to change your flight +The journey must be changed,217,You need to change your flight +"I need to change my flight, can you help me?",218,You need to change your flight +I need to change my flight.,220,You need to change your flight +Can you help me to change my flight?,221,You need to change your flight +i want to change my flight,225,You need to change your flight +Can you help me to change my flight?,226,You need to change your flight +Is there another trip?,227,You need to change your flight +Could you help me get a new flight?,228,You need to change your flight +I need help to change the flight,229,You need to change your flight +Is there availability to change my flight?,230,You need to change your flight +Is there availability to change my flight ?,231,You need to change your flight +Want to change my flight,233,You need to change your flight +I need to change my flight,234,You need to change your flight +I need to be in NY at noon. Can you change my flight?,235,You need to change your flight +Can I change my flight?,236,You need to change your flight +Until when can I change my flight?,237,You need to change your flight +i want to change my flight,238,You need to change your flight +Is there a direct flight to my destination,239,You need to check if there are any direct flights to your location +Are there any direct flights to my destination?,240,You need to check if there are any direct flights to your location +can you give me a list of flights to Moscow,241,You need to check if there are any direct flights to your location +there are direct flights to this destination please,243,You need to check if there are any direct flights to your location +Are there any avaiable flights to my destination?,244,You need to check if there are any direct flights to your location +Is there are any direct flights to my location?,245,You need to check if there are any direct flights to your location +could you give me information about this flight,246,You need to check if there are any direct flights to your location +Could you please check the direct flights to my location?,247,You need to check if there are any direct flights to your location +Is there any direct flights to Thessaloniki?,248,You need to check if there are any direct flights to your location +I'd like to see the flights in my address,249,You need to check if there are any direct flights to your location +"Hi, I was wondering if there's a direct flight to NY.",251,You need to check if there are any direct flights to your location +there are direct flights?,253,You need to check if there are any direct flights to your location +Are there any direct flights to Cairo?,254,You need to check if there are any direct flights to your location +There's any flight to Caracas?,255,You need to check if there are any direct flights to your location +podria decirme si hay disponible algun vuelo directo,256,You need to check if there are any direct flights to your location +hi could you please tell me again the information that i did not understand,257,You need to check if there are any direct flights to your location +there are direct flights to,258,You need to check if there are any direct flights to your location +Is there any direct flights to my location,259,You need to check if there are any direct flights to your location +i need know if there are any direct flights for Spain,261,You need to check if there are any direct flights to your location +pleas can u tell me is there any direct flights to cairo,262,You need to check if there are any direct flights to your location +I need to know which is the next flight home please,263,You need to check if there are any direct flights to your location +the flights are direct to my destination,265,You need to check if there are any direct flights to your location +Can you help me get a new flight?,267,You need to check if there are any direct flights to your location +Is there a direct flight to Egypt,268,You need to check if there are any direct flights to your location +Is there any direct flight to New York?,269,You need to check if there are any direct flights to your location +there are direct flights?,270,You need to check if there are any direct flights to your location +Can you check for me if there are any direct flights to my location?,271,You need to check if there are any direct flights to your location +there are direct flights from here?,274,You need to check if there are any direct flights to your location +Are there direct flights to my destination ??,275,You need to check if there are any direct flights to your location +I need a direct flight to Wiscosin,276,You need to check if there are any direct flights to your location +Do you have direct flight to _____?,277,You need to check if there are any direct flights to your location +i need to check if there are any direct flights to my location,278,You need to check if there are any direct flights to your location +How heavy can my bags be?,279,You need to know the maximum weight for a checked bag +How much is the weight of my luggage?,280,You need to know the maximum weight for a checked bag +What is the maximum weight for one piece of luggage?,281,You need to know the maximum weight for a checked bag +ljkfahfquow iqweio qoij,282,You need to know the maximum weight for a checked bag +What is the maximum weight for a baggage without additional charge?,283,You need to know the maximum weight for a checked bag +What is the maximum weight for a checked bag?,284,You need to know the maximum weight for a checked bag +"I think my bag is to heavy, what is the maximum weight?",285,You need to know the maximum weight for a checked bag +what is the maximum weight that I should carry by suitcase?,286,You need to know the maximum weight for a checked bag +I wanted to know the maximum weight of hold Luggage.,287,You need to know the maximum weight for a checked bag +Could you tell me what is the maximum weight of a bag?,288,You need to know the maximum weight for a checked bag +hi could you please tell me again the information that i did not understand,290,You need to know the maximum weight for a checked bag +What's the maximum weight for my bag?,292,You need to know the maximum weight for a checked bag +I need to know the maximum weight for a checked bag,294,You need to know the maximum weight for a checked bag +what is the maximum weight in the suitcase,295,You need to know the maximum weight for a checked bag +What is the heaviest luggage I can check in with?,296,You need to know the maximum weight for a checked bag +hi could you please tell me again the information that i did not understand,297,You need to know the maximum weight for a checked bag +What is the maximum weight for a checked bag?,298,You need to know the maximum weight for a checked bag +What's the maximum weight for my bag?,299,You need to know the maximum weight for a checked bag +how much weight baggage?,300,You need to know the maximum weight for a checked bag +can you tell me how much weight can i take with me,301,You need to know the maximum weight for a checked bag +May I ask what is the maximum weight for a checked bag?,302,You need to know the maximum weight for a checked bag +Do you have maximum weight?,303,You need to know the maximum weight for a checked bag +what the maximum weight for a checked bag?,304,You need to know the maximum weight for a checked bag +what would be the maximum weight for my travel bag,305,You need to know the maximum weight for a checked bag +Can you help me get a new flight?,306,You need to know the maximum weight for a checked bag +What is the maximum weight for the bag checked,308,You need to know the maximum weight for a checked bag +What is the maximum weight of the checked bag?,309,You need to know the maximum weight for a checked bag +tell me how much is the maximum luggage weight per person,310,You need to know the maximum weight for a checked bag +what is the maximum weight that i can check?,312,You need to know the maximum weight for a checked bag +What is my luggage weight limit?,313,You need to know the maximum weight for a checked bag +What is the weight limit for a checked bag?,314,You need to know the maximum weight for a checked bag +Where do I see the registered weight of my luggage?,315,You need to know the maximum weight for a checked bag +excuse me where I can weigh my luggage?,317,You need to know the maximum weight for a checked bag +I know it's on time but do you have a weight limit for a baggage?,318,You need to know the maximum weight for a checked bag +How can I ask for a wheelchair when I land?,319,You need to request a wheelchair when you land +Is there a wheelchair available for my grandmother?,320,You need to request a wheelchair when you land +Who can I ask for a wheelchair after landing?,321,You need to request a wheelchair when you land +"Please, I need a wheelchair on the landing of that flight.",323,You need to request a wheelchair when you land +Can I get a wheelchair when landing?,324,You need to request a wheelchair when you land +"I am injured, could you get me a wheelchair?",325,You need to request a wheelchair when you land +When I land I'm going to need a wheelchair ... can you help me with that?,326,You need to request a wheelchair when you land +I want to request a wheelchair for the disabled.,327,You need to request a wheelchair when you land +Can I have a wheelchair please?,328,You need to request a wheelchair when you land +hi could you please tell me again the information that i did not understand,330,You need to request a wheelchair when you land +I need a wheelchair in my destination,332,You need to request a wheelchair when you land +May I request a wheelchair when I land?,334,You need to request a wheelchair when you land +I need travel service,335,You need to request a wheelchair when you land +"I need to get a wheelchair for my grandma, I hope you can get me one.",336,You need to request a wheelchair when you land +hi could you please tell me again the information that i did not understand,337,You need to request a wheelchair when you land +I'd like to have wheelchair service when I land.,338,You need to request a wheelchair when you land +How can I request a wheelchair?,339,You need to request a wheelchair when you land +i want to chair what do you know about that?,340,You need to request a wheelchair when you land +i need to a wheelchair when the plane land,341,You need to request a wheelchair when you land +I would like to request a wheelchair after landing.,342,You need to request a wheelchair when you land +How can I request a wheelchair?,343,You need to request a wheelchair when you land +i want a wheelchair please,344,You need to request a wheelchair when you land +at the end of the trip I need a wheelchair,345,You need to request a wheelchair when you land +Can you help me get a new flight?,346,You need to request a wheelchair when you land +I needed a wheelchair when landing,348,You need to request a wheelchair when you land +I need a wheelchair when I land,349,You need to request a wheelchair when you land +"I travel with my aunt who is invalid, please have a wheel chair to the landing",350,You need to request a wheelchair when you land +i will need a wheelchair upon landing,352,You need to request a wheelchair when you land +Can you help me please with a wheelchair?,353,You need to request a wheelchair when you land +How can I get assistance to obtain a wheelchair?,354,You need to request a wheelchair when you land +When do I report that I need a wheelchair to get off the plane?,355,You need to request a wheelchair when you land +¿posee la aerolinea servicio de silla de ruedas?,357,You need to request a wheelchair when you land +"I would like a wheelchair, please.",358,You need to request a wheelchair when you land +Is a travel advisory at my destination?,359,You need to see if there is a travel advisory in the place you’re flying to +Where can I see the warning?,360,You need to see if there is a travel advisory in the place you’re flying to +May I find a travel advisory where I am headed?,361,You need to see if there is a travel advisory in the place you’re flying to +Is there a travel advisory in my destination?,362,You need to see if there is a travel advisory in the place you’re flying to +Is a travel advertisement available?,363,You need to see if there is a travel advisory in the place you’re flying to +Can I get a flight to the same place I'm going in case something happens?,365,You need to see if there is a travel advisory in the place you’re flying to +Is there a travel advisory in Athens?,366,You need to see if there is a travel advisory in the place you’re flying to +Are there tour guides in this city?,367,You need to see if there is a travel advisory in the place you’re flying to +Can there be a notice to the place where I am traveling?,368,You need to see if there is a travel advisory in the place you’re flying to +ı need an important job to do,370,You need to see if there is a travel advisory in the place you’re flying to +Could you tell me where the travel advices are?,372,You need to see if there is a travel advisory in the place you’re flying to +are there notices on this flight?,373,You need to see if there is a travel advisory in the place you’re flying to +hi could you please tell me again the information that i did not understand,374,You need to see if there is a travel advisory in the place you’re flying to +there are notices around,375,You need to see if there is a travel advisory in the place you’re flying to +Is there a travel advisory to the country?,376,You need to see if there is a travel advisory in the place you’re flying to +can you told me if there any advisor in the flight ?,377,You need to see if there is a travel advisory in the place you’re flying to +i want to take travel advisory how can i ?,378,You need to see if there is a travel advisory in the place you’re flying to +how to see if there is a travel advice in the place where I'm flying,379,You need to see if there is a travel advisory in the place you’re flying to +Is there a travel advisory in that place?,381,You need to see if there is a travel advisory in the place you’re flying to +I need to know about the route announcement,382,You need to see if there is a travel advisory in the place you’re flying to +hi could you please tell me again the information that i did not understand,383,You need to see if there is a travel advisory in the place you’re flying to +there is a travel advisory in the place you’re flying to ؟,384,You need to see if there is a travel advisory in the place you’re flying to +I want to see travel advisory in the flight I am travelling.,386,You need to see if there is a travel advisory in the place you’re flying to +You know about a travel advisory?,387,You need to see if there is a travel advisory in the place you’re flying to +you could check if there is a travel notice to miami,388,You need to see if there is a travel advisory in the place you’re flying to +where can I see information about the place of my appointment?,389,You need to see if there is a travel advisory in the place you’re flying to +This is the first time I travel Can you advise me,392,You need to see if there is a travel advisory in the place you’re flying to +I was wondering whether there is any travel advisory when I arrive?,393,You need to see if there is a travel advisory in the place you’re flying to +are there any travel advisoy in my distination country,394,You need to see if there is a travel advisory in the place you’re flying to +Do you know of any travel advisory in that place?,395,You need to see if there is a travel advisory in the place you’re flying to +I need to know if there is any travel notice in orlando ??,396,You need to see if there is a travel advisory in the place you’re flying to +i need to see if there is a travel advisory in the place i am flying to,397,You need to see if there is a travel advisory in the place you’re flying to +I need my frequent flier number,399,You need your frequent flier number +Do you have a membership program and can I join?,400,You need your frequent flier number +Could you remind me of my number?,401,You need your frequent flier number +With my card I can get my frequent flyer benefits,403,You need your frequent flier number +What is my frequent flier number?,404,You need your frequent flier number +Can I get the frequent flier number?,405,You need your frequent flier number +how could I get my frequent flyer number,406,You need your frequent flier number +Could you please tell me my frequent flier number?,407,You need your frequent flier number +What is my frequent flier number?,408,You need your frequent flier number +I need the flight number of the aircraft frequently flying,409,You need your frequent flier number +Can you tell me what my frequent flyer number is for?,411,You need your frequent flier number +What is my traveler's number?,413,You need your frequent flier number +"Please, I need my frequent flier number?",414,You need your frequent flier number +"Sorry,you could tell my what's my frequent flier number?",415,You need your frequent flier number +"Good day, could you give me my travel number?",416,You need your frequent flier number +hi could you please tell me again the information that i did not understand,417,You need your frequent flier number +could you give me my travel number,418,You need your frequent flier number +May I have my frequent flier number?,419,You need your frequent flier number +what is my frequent flier number?,421,You need your frequent flier number +give me my frequent number pleas,422,You need your frequent flier number +Could I have my frequent flier number please?,423,You need your frequent flier number +I need my travel number,425,You need your frequent flier number +Can you help me get a new flight?,427,You need your frequent flier number +Please need the pilot number,428,You need your frequent flier number +can you give me my frequent flyer number,429,You need your frequent flier number +I need my frequent flier number.,431,You need your frequent flier number +Where do I get my frequent flyer number?,434,You need your frequent flier number +Could you tell me the frequent travel number?,435,You need your frequent flier number +Is there any way to travel without it?,436,You need your frequent flier number +Where can I get my frequent flier number?,437,You need your frequent flier number +i need your frequent flier number,438,You need your frequent flier number +"Could you repeat what you just said, please?",439,You want a customer service agent to repeat what they just said +Can you repeat the answer?,440,You want a customer service agent to repeat what they just said +"Sorry, I did not understand what you said.",441,You want a customer service agent to repeat what they just said +"I did not understand what you said, please repeat?",442,You want a customer service agent to repeat what they just said +Can you repeat what you just said?,443,You want a customer service agent to repeat what they just said +Can you repeat what I just said?,445,You want a customer service agent to repeat what they just said +I'm sorry I listened to what you said.,446,You want a customer service agent to repeat what they just said +hi could you please tell me again the information that i did not understand,449,You want a customer service agent to repeat what they just said +"Please, say that again.",453,You want a customer service agent to repeat what they just said +"could you repeat that, please",454,You want a customer service agent to repeat what they just said +What? I have missed my flight? Can you please repeat your last sentence?,455,You want a customer service agent to repeat what they just said +hi could you please tell me again the information that i did not understand,456,You want a customer service agent to repeat what they just said +Can you repeat that again?,457,You want a customer service agent to repeat what they just said +Can you please repeat what you just said?,458,You want a customer service agent to repeat what they just said +"Could you, please, repeat your last sentence?",461,You want a customer service agent to repeat what they just said +I can not understand repeat,462,You want a customer service agent to repeat what they just said +i not understand what he say !,463,You want a customer service agent to repeat what they just said +I could repeat what I just said,464,You want a customer service agent to repeat what they just said +Can you help me get a new flight?,465,You want a customer service agent to repeat what they just said +Can you repeat the information you just gave me?,468,You want a customer service agent to repeat what they just said +"Sorry, the noise did not allow me to listen.",469,You want a customer service agent to repeat what they just said +can you repeat what do you said?,471,You want a customer service agent to repeat what they just said +can you repeat what you said ?,472,You want a customer service agent to repeat what they just said +"I beg your pardon, can you repeat that?",473,You want a customer service agent to repeat what they just said +"Could you repeat what you are indicating, please",474,You want a customer service agent to repeat what they just said +"excuse me, do not listen to what you said",476,You want a customer service agent to repeat what they just said +"Sorry, but can you repeat what you said?",477,You want a customer service agent to repeat what they just said +I would like a refund,478,You want a refund +I have decided not to travel and I would like the money back from the ticket?,479,You want a refund +"The flight was delayed, can I get a refund?",480,You want a refund +What is your refund policy,481,You want a refund +Can I cancel the trip and restore my money?,483,You want a refund +What's your policy about refunds?,484,You want a refund +I want you to compensate for my inconvenience.,485,You want a refund +"El servicio que indican no se cumple, a quien me dirijo para solicitar reembolso?",488,You want a refund +hi could you please tell me again the information that i did not understand,489,You want a refund +I want a refund and I need to know what to do to get it?,493,You want a refund +hi could you please tell me again the information that i did not understand,494,You want a refund +I would like my money back,495,You want a refund +my flight is delay i want my refund,496,You want a refund +i want to pay back how can you that?,498,You want a refund +Can you help me get a new flight?,503,You want a refund +Please return my money,504,You want a refund +I want a refund that flight was awful.,505,You want a refund +How do I request for a refund?,506,You want a refund +Can I have my money back please?,509,You want a refund +"I am supposed to get my refund back, can you help me?",510,You want a refund +I want a refund for the flight,511,You want a refund +Where can I fill the form for refund?,514,You want a refund +I didn't enjoy the service I need a refund,515,You want a refund +I need a refund please,516,You want a refund +How can I add a frequent flyer number to a booked flight?,518,You want to add a frequent flyer number to a flight you already booked +can I request my frequent flyer number?,519,You want to add a frequent flyer number to a flight you already booked +Can I add my number to receive bonuses?,520,You want to add a frequent flyer number to a flight you already booked +"I bought a pass and I need to include a friend on the same flight, what to do?",522,You want to add a frequent flyer number to a flight you already booked +Can i add a frequent flyer number to the flight i already booked?,523,You want to add a frequent flyer number to a flight you already booked +"I have a problem, could you please help me?",524,You want to add a frequent flyer number to a flight you already booked +I need to add a frequent flyer number to the flight that I have booked,525,You want to add a frequent flyer number to a flight you already booked +I want to change the list of the booked flight.,526,You want to add a frequent flyer number to a flight you already booked +I would like to add a frequent flyer number to a flight please.,527,You want to add a frequent flyer number to a flight you already booked +hello could add my frequent flyer pass to an already assigned flight,529,You want to add a frequent flyer number to a flight you already booked +"I want to add my frequent flyer number, please",531,You want to add a frequent flyer number to a flight you already booked +I need to add a frequent flyer number to a flight I have already booked,533,You want to add a frequent flyer number to a flight you already booked +I am a frequent traveler would give me some number of traveler,534,You want to add a frequent flyer number to a flight you already booked +Is there any way to assign my frequent flyer number to my flight?,535,You want to add a frequent flyer number to a flight you already booked +hi could you please tell me again the information that i did not understand,536,You want to add a frequent flyer number to a flight you already booked +Help me to add a frequent flyer number?,537,You want to add a frequent flyer number to a flight you already booked +I want to add flyer number.,538,You want to add a frequent flyer number to a flight you already booked +ı want to add number how can i ?,539,You want to add a frequent flyer number to a flight you already booked +pleas add a frequent flyer number to my flight,540,You want to add a frequent flyer number to a flight you already booked +Is it possible to add a frequent flyer number to a flight I already booked?,541,You want to add a frequent flyer number to a flight you already booked +can I add a reservation office number?,542,You want to add a frequent flyer number to a flight you already booked +can you help me beacuse i want to add a frequent flyer number to my fligh ?t,543,You want to add a frequent flyer number to a flight you already booked +I want to add a traveler number for this flight,544,You want to add a frequent flyer number to a flight you already booked +Can you help me get a new flight?,545,You want to add a frequent flyer number to a flight you already booked +I want to add the number of permanent flyer,547,You want to add a frequent flyer number to a flight you already booked +If I'm going to add my frequent flyer number,548,You want to add a frequent flyer number to a flight you already booked +please place as frequent traveler to my ticket,549,You want to add a frequent flyer number to a flight you already booked +can i add a frequent flyer number to my reservation?,551,You want to add a frequent flyer number to a flight you already booked +can I still add a frequent flyer number to my reservation?,552,You want to add a frequent flyer number to a flight you already booked +Can you help me to add a frequent flyer number to my flight please?,553,You want to add a frequent flyer number to a flight you already booked +Is it necessary to add to the flight the frequent flyer number?,554,You want to add a frequent flyer number to a flight you already booked +Are tickets available?,556,You want to add a frequent flyer number to a flight you already booked +I need a new frequent flyer number. Where can I?,557,You want to add a frequent flyer number to a flight you already booked +Is travel insurance included?,558,You want to add travel insurance to a purchased flight +I want to add travel insurance to a flight that I purchased. Can you help me?,559,You want to add travel insurance to a purchased flight +CAN I ADD A TRAVEL INSURANCE TO THIS FLIGHT?,560,You want to add travel insurance to a purchased flight +Can I add insurance with tickets already purchased?,561,You want to add travel insurance to a purchased flight +Can I add travel insurance to my purchased flight?,562,You want to add travel insurance to a purchased flight +how much would be the cost of it and that would include,563,You want to add travel insurance to a purchased flight +How can I add travel insurance to my flight?,564,You want to add travel insurance to a purchased flight +Tell me if I can add insurance to my flight?,565,You want to add travel insurance to a purchased flight +Cuanto es el cargo adicional por incluir el seguro de vuelo?,566,You want to add travel insurance to a purchased flight +"I want an insurance, please",567,You want to add travel insurance to a purchased flight +Tell me about the travel insurance,569,You want to add travel insurance to a purchased flight +"Yes, it could be right",570,You want to add travel insurance to a purchased flight +I want to add travel insurance to a purchased flight.,571,You want to add travel insurance to a purchased flight +I would like to buy insurance for my flight,572,You want to add travel insurance to a purchased flight +What benefits are you giving me?,573,You want to add travel insurance to a purchased flight +hi could you please tell me again the information that i did not understand,574,You want to add travel insurance to a purchased flight +yes i want add travel insurance for emergency,575,You want to add travel insurance to a purchased flight +Help for travel insurance to a purchased flight please?,576,You want to add travel insurance to a purchased flight +I have to my add fly travel insurance?,578,You want to add travel insurance to a purchased flight +"Ok sure, how much is it?",579,You want to add travel insurance to a purchased flight +I forgot to ask for travel insurance for my flight. Would you please help me with that?,581,You want to add travel insurance to a purchased flight +how can i add travel insurance to a purchased flight?,583,You want to add travel insurance to a purchased flight +I want to buy insurance on my trip,584,You want to add travel insurance to a purchased flight +Are taxis available to book right now?,585,You want to add travel insurance to a purchased flight +Can you help me to add travel insurance to a purchased flight?,587,You want to add travel insurance to a purchased flight +i want to add travel insurance to a purchased flight,589,You want to add travel insurance to a purchased flight +Can I add travel insurance to a purchased flight?,590,You want to add travel insurance to a purchased flight +I want to put insurance on any risks that will happen,591,You want to add travel insurance to a purchased flight +"I already booked, I want to add travel insurance please",592,You want to add travel insurance to a purchased flight +I would like to know what is the price for a flight insurance ??,593,You want to add travel insurance to a purchased flight +Want to add travel insurance to a purchased flight,595,You want to add travel insurance to a purchased flight +I want to add travel insurance to my purchased flight,596,You want to add travel insurance to a purchased flight +How much does it cost?,597,You want to add travel insurance to a purchased flight +What's the cost of ticket?,599,You want to book a flight +I want to book a flight.,600,You want to book a flight +COULD MAKE A BOOKING OF A FLIGHT NOW,601,You want to book a flight +Can I book a flight to London?,603,You want to book a flight +"Good day, I want to book a flight",604,You want to book a flight +"I would like to book a flight, how is the process?",605,You want to book a flight +"I want to book a flight, please",607,You want to book a flight +What trips are available?,609,You want to book a flight +"Please, I want to book a flight",610,You want to book a flight +I would like to book my flight,611,You want to book a flight +do I need to book an air ticket?,612,You want to book a flight +hi could you please tell me again the information that i did not understand,613,You want to book a flight +I would like to book my flight,614,You want to book a flight +I really need to book another flight! Help?,615,You want to book a flight +i want to book aflight from cairo to paris on next monday,617,You want to book a flight +YOU HAVE QUOTES AVAILABLE TO FLY IN TWO DAYS?,618,You want to book a flight +What are the flight schedules for the United States?,619,You want to book a flight +Can I make a reservation?,620,You want to book a flight +How much does it cost to book the flight?,621,You want to book a flight +I would like to have information about the flight,622,You want to book a flight +hi could you please tell me again the information that i did not understand,623,You want to book a flight +Can you help me get a new flight?,624,You want to book a flight +I would like to book a trip,626,You want to book a flight +Where can I book a flight?,627,You want to book a flight +Can you book me a flight?,628,You want to book a flight +please a to book a flight to canada tomorrow,629,You want to book a flight +can i book a flight ?,631,You want to book a flight +I need to book a flight.,632,You want to book a flight +You could book a flight.,633,You want to book a flight +how can I book a flight,634,You want to book a flight +I would like to schedule a flight,635,You want to book a flight +i want to book a flight,636,You want to book a flight +Sorry but I must cancel my flight.,637,You want to cancel your flight +I want another date to travel,638,You want to cancel your flight +"Could you help me cancelling my flight, please?",639,You want to cancel your flight +What's your rules on flight cancellation?,640,You want to cancel your flight +Can I book another flight?,641,You want to cancel your flight +Do I pay any fee to cancel the flight?,643,You want to cancel your flight +Can I cancel my trip?,644,You want to cancel your flight +I'd like to cancel your flight,645,You want to cancel your flight +"I would like to cancel my flight, something important has come up here, is it possible?",646,You want to cancel your flight +ı need an important job to do,648,You want to cancel your flight +I would like to cancel my flight due to an inconvenite,650,You want to cancel your flight +"I can not get to my flight, can I cancel it?",651,You want to cancel your flight +hi could you please tell me again the information that i did not understand,652,You want to cancel your flight +I would like to cancel my flight,653,You want to cancel your flight +I want to cancel my flight.,654,You want to cancel your flight +please i have a problem can i give my ticket to another person ?,655,You want to cancel your flight +i want to cancel my flight how can i ?,656,You want to cancel your flight +I want to cancel my flight,657,You want to cancel your flight +I want to cancel my booking,659,You want to cancel your flight +I'm not interested in your offer,660,You want to cancel your flight +hi could you please tell me again the information that i did not understand,661,You want to cancel your flight +Can you help me get a new flight?,662,You want to cancel your flight +Yes I want to cancel my flight.,664,You want to cancel your flight +How can i cancel my flight?,665,You want to cancel your flight +How can I cancel my flight?,666,You want to cancel your flight +How can I cancel my ticket?,667,You want to cancel your flight +I want to cancel my trip,670,You want to cancel your flight +"I have to cancel my flight, can you help me please.",671,You want to cancel your flight +would you mind canceling my flight please,672,You want to cancel your flight +How do I cancel my flight?,673,You want to cancel your flight +i want to cancel my flight,675,You want to cancel your flight +Can you check if my flight is on time?,677,You want to check if your flight is on time +I would like to know the time of my flight,679,You want to check if your flight is on time +What time is the flight leaving?,680,You want to check if your flight is on time +has not my flight left yet?,681,You want to check if your flight is on time +Is my flight all as scheduled?,683,You want to check if your flight is on time +Will my trip be on schedule?,684,You want to check if your flight is on time +I'd like to check my flight,685,You want to check if your flight is on time +"Hi, is my flight leaving?",686,You want to check if your flight is on time +ı have to go there on time,688,You want to check if your flight is on time +I would like to know if my flight is on time,690,You want to check if your flight is on time +what time does my flight arrive,691,You want to check if your flight is on time +hi could you please tell me again the information that i did not understand,692,You want to check if your flight is on time +everything is in order,693,You want to check if your flight is on time +Is the flight on time?,694,You want to check if your flight is on time +please can you tell the time of my flight ?,695,You want to check if your flight is on time +i want to check what i must?,696,You want to check if your flight is on time +tell my flight is not late,697,You want to check if your flight is on time +"I want to check about my flight, will it delay?",699,You want to check if your flight is on time +I would like to know if I am in time for my trip,700,You want to check if your flight is on time +hi could you please tell me again the information that i did not understand,701,You want to check if your flight is on time +Can you help me get a new flight?,702,You want to check if your flight is on time +Is my flight on time?,704,You want to check if your flight is on time +"Good afternoon, can you give me flight information?",706,You want to check if your flight is on time +Where can I see the time of arrival / departure of my flight?,707,You want to check if your flight is on time +"Please, I want to know when my trip will be",710,You want to check if your flight is on time +Can you tell me whether my plane is taking off on the time?,711,You want to check if your flight is on time +dose the flight will take off on time,712,You want to check if your flight is on time +Do you know the estimated time for the arrival?,713,You want to check if your flight is on time +If I'd like to know if my flight is on time?,714,You want to check if your flight is on time +i want to check if my flight is on time if my flight is on time,715,You want to check if your flight is on time +is the flight on time,717,You want to check your flight status +What's the flight timings?,718,You want to check your flight status +I want to check my flight status.,719,You want to check your flight status +"I would like to confirm the schedule of my flight, could you repeat the time of departure and arrival?",720,You want to check your flight status +Where I am going to check the status of my flight,721,You want to check your flight status +Can i check my flight status?,722,You want to check your flight status +"Agent, I want to check flight status",723,You want to check your flight status +I want to know how the flight status is doing,724,You want to check your flight status +What's my flight status?,726,You want to check your flight status +is the flight departure time maintained?,728,You want to check your flight status +What is my flight status?,729,You want to check your flight status +I would like to know if my flight is in time.,730,You want to check your flight status +details of my flight?,731,You want to check your flight status +hi could you please tell me again the information that i did not understand,732,You want to check your flight status +everything is fine on the flight,733,You want to check your flight status +Help me to check my flight status?,734,You want to check your flight status +i want to check my flight status,736,You want to check your flight status +"GOOD LADY, STILL GOING MY FLIGHT, I'M STILL HAVING NO NEWS",737,You want to check your flight status +What is the scheduled time for this flight?,738,You want to check your flight status +Is there a change in flight time?,739,You want to check your flight status +Are we going to leave for the destination?,740,You want to check your flight status +I would like to know if there is any problem with my flight,741,You want to check your flight status +hi could you please tell me again the information that i did not understand,742,You want to check your flight status +Can you help me get a new flight?,743,You want to check your flight status +I want to ask about the status of the trip,745,You want to check your flight status +I want to know what state my flight is in?,746,You want to check your flight status +Can you check the status of my flight?,747,You want to check your flight status +What time is going to leave my flight to Caracas?,748,You want to check your flight status +what is my flight status ?,750,You want to check your flight status +What is the status of my flight?,751,You want to check your flight status +How do I know if I'm on the standby list?,752,You want to check your flight status +Want to check my flight status,753,You want to check your flight status +"I need to check the status of my flight, can you help me?",754,You want to check your flight status +how is my flight status ?,755,You want to check your flight status +What's the cost of changing my flight?,756,You want to know how much it’s going to cost to change your flight +How much it’s going to cost to change my flight?,757,You want to know how much it’s going to cost to change your flight +WHAT COST HAS I FOR THIS CHANGES THIS FLIGHT FOR ANOTHER?,758,You want to know how much it’s going to cost to change your flight +How much will I pay extra to change my flight?,759,You want to know how much it’s going to cost to change your flight +What is the cost when i change your flight?,760,You want to know how much it’s going to cost to change your flight +to change my flight there will be some kind of surcharge,761,You want to know how much it’s going to cost to change your flight +Tell me how much is this flight?,762,You want to know how much it’s going to cost to change your flight +Cuanto debo pagar por cambiar mi vuelo?,763,You want to know how much it’s going to cost to change your flight +"Hi, which are the prices?",766,You want to know how much it’s going to cost to change your flight +How much does it cost to change my flight?,768,You want to know how much it’s going to cost to change your flight +is there any penalty for changing my flight,769,You want to know how much it’s going to cost to change your flight +what price does my air ticket change?,770,You want to know how much it’s going to cost to change your flight +hi could you please tell me again the information that i did not understand,771,You want to know how much it’s going to cost to change your flight +how much this change is gonna cost,772,You want to know how much it’s going to cost to change your flight +How much it’s going to cost to change my flight?,773,You want to know how much it’s going to cost to change your flight +how much money if i change my fly?,775,You want to know how much it’s going to cost to change your flight +Since when did you buy the ticket?,777,You want to know how much it’s going to cost to change your flight +Hi! I need to change my flight. How much will I be charged?,778,You want to know how much it’s going to cost to change your flight +how much it’s going to cost to change my flight ?,780,You want to know how much it’s going to cost to change your flight +What would the flight change cost,781,You want to know how much it’s going to cost to change your flight +Are taxis available to book right now?,782,You want to know how much it’s going to cost to change your flight +Can you tell me how much it's going to cost to change my flight?,784,You want to know how much it’s going to cost to change your flight +how much it’s going to cost to change my flight?,786,You want to know how much it’s going to cost to change your flight +Can you tell me how much it's going to cost to change my flight?,787,You want to know how much it’s going to cost to change your flight +I want to change my trip and know what the cost is,788,You want to know how much it’s going to cost to change your flight +What will be the cost of the flight change?,789,You want to know how much it’s going to cost to change your flight +I would like to know how much is the cost of the flight change ??,790,You want to know how much it’s going to cost to change your flight +How much will it cost to change my flight,792,You want to know how much it’s going to cost to change your flight +How much will it cost to change my flight,793,You want to know how much it’s going to cost to change your flight +How much does it cost to change my flight?,794,You want to know how much it’s going to cost to change your flight +Do I have to pay for a carry-on bag on the plane?,795,You want to know if it costs money to bring a carry-on bag onto the plane +i have to pay for the handbag?,796,You want to know if it costs money to bring a carry-on bag onto the plane +Should I pay to carry the bag on board?,797,You want to know if it costs money to bring a carry-on bag onto the plane +How many kilos can I take with me?,799,You want to know if it costs money to bring a carry-on bag onto the plane +Can i know if it costs money to bring a carry-on bag onto the plane?,800,You want to know if it costs money to bring a carry-on bag onto the plane +Do I have to pay for my carry-on bag?,801,You want to know if it costs money to bring a carry-on bag onto the plane +Sir please let me know if I should pay for carrying a handbag,802,You want to know if it costs money to bring a carry-on bag onto the plane +"Sorry, I would like to know the price for baggage.",803,You want to know if it costs money to bring a carry-on bag onto the plane +Does it cost money to carry a carry-on bag?,804,You want to know if it costs money to bring a carry-on bag onto the plane +hi could you please tell me again the information that i did not understand,806,You want to know if it costs money to bring a carry-on bag onto the plane +Is it any cost for my bag?,808,You want to know if it costs money to bring a carry-on bag onto the plane +I would like to know if it costs money to bring a carry-on bag onto the plane.,810,You want to know if it costs money to bring a carry-on bag onto the plane +How much does it cost for me to carry this on the flight?,811,You want to know if it costs money to bring a carry-on bag onto the plane +"If I bring this luggage with me, how much do I need to pay?",812,You want to know if it costs money to bring a carry-on bag onto the plane +hi could you please tell me again the information that i did not understand,813,You want to know if it costs money to bring a carry-on bag onto the plane +Does it costs money to bring a carry-on bag onto the plane?,814,You want to know if it costs money to bring a carry-on bag onto the plane +Does it cost money to bring a carry - on bag on the plane?,815,You want to know if it costs money to bring a carry-on bag onto the plane +how much money if i take another baggage?,816,You want to know if it costs money to bring a carry-on bag onto the plane +can you tell me how much money it costs to bring a carry on bag,817,You want to know if it costs money to bring a carry-on bag onto the plane +"If I may ask, would it cost money to bring a carry-on bag onto the plane?",818,You want to know if it costs money to bring a carry-on bag onto the plane +Is there a carrying bag cost?,819,You want to know if it costs money to bring a carry-on bag onto the plane +can i know if it costs money to bring a carry-on bag onto the plane?,820,You want to know if it costs money to bring a carry-on bag onto the plane +I could give information of if there is algin cost in bringing a hand bag,821,You want to know if it costs money to bring a carry-on bag onto the plane +Can you help me get a new flight?,822,You want to know if it costs money to bring a carry-on bag onto the plane +How much do I pay to carry the bag on the plane?,824,You want to know if it costs money to bring a carry-on bag onto the plane +can you tell me if I should pay for carrying a hand bag to the plane,825,You want to know if it costs money to bring a carry-on bag onto the plane +carry carry bag has an additional cost?,826,You want to know if it costs money to bring a carry-on bag onto the plane +is there a charge for carry on ?,828,You want to know if it costs money to bring a carry-on bag onto the plane +Is there a charge for carry-on?,829,You want to know if it costs money to bring a carry-on bag onto the plane +Is there any additional cost if I bring a carry-on bag?,830,You want to know if it costs money to bring a carry-on bag onto the plane +I need to pay extra for bringing my bag on the plane?,831,You want to know if it costs money to bring a carry-on bag onto the plane +there are additional charges for carrying my handbag?,833,You want to know if it costs money to bring a carry-on bag onto the plane +Are there any transportation fees?,834,You want to know if it costs money to bring a carry-on bag onto the plane +what type of food is served on this flight,835,You want to know what food will be served on the plane +What food will be served on the plane?,836,You want to know what food will be served on the plane +"Excuse me, may I ask - what have we on the menu today?",837,You want to know what food will be served on the plane +Could you tell me what the menu is?,839,You want to know what food will be served on the plane +What are my meal options?,840,You want to know what food will be served on the plane +What kind of food is offered on the plane?,841,You want to know what food will be served on the plane +"I have a stomach desease, which type of food do you serve on the plane?",843,You want to know what food will be served on the plane +Can you tell me what food is served on the plane?,844,You want to know what food will be served on the plane +"Sorry, what food will be?",845,You want to know what food will be served on the plane +What time will the food be served?,847,You want to know what food will be served on the plane +what is the food menu?,849,You want to know what food will be served on the plane +What kind of food do you serve on the plane?,850,You want to know what food will be served on the plane +Do you offer a vegan menu?,851,You want to know what food will be served on the plane +I could indicate that we will eat on the flight,852,You want to know what food will be served on the plane +hi could you please tell me again the information that i did not understand,853,You want to know what food will be served on the plane +what will be the menu of the flight,854,You want to know what food will be served on the plane +what food will be served on the plane?,855,You want to know what food will be served on the plane +What food will be served on the plane?,857,You want to know what food will be served on the plane +can you tell me pleas what is the kind of the food will be provided in the plane,858,You want to know what food will be served on the plane +What are you serving during the trip?,859,You want to know what food will be served on the plane +I would like to know the travel menu,861,You want to know what food will be served on the plane +Can you help me get a new flight?,863,You want to know what food will be served on the plane +Is there a meal on the plane?,864,You want to know what food will be served on the plane +what is the menu of the flight?,865,You want to know what food will be served on the plane +What kind of food will serve on the plane.,867,You want to know what food will be served on the plane +Could you tell me the menu of the plane?,870,You want to know what food will be served on the plane +I would like to know that they are going to serve food on the plane ??,871,You want to know what food will be served on the plane +Where can I get the food menu in my flight?,872,You want to know what food will be served on the plane +What food will be served on the plane?,873,You want to know what food will be served on the plane +i want to know what food will be served on the plane,874,You want to know what food will be served on the plane +does the flight have wifi,875,You want to see if there’s wifi on the flight +Is there WiFi on flight?,876,You want to see if there’s wifi on the flight +Is there wifi in this plane?,877,You want to see if there’s wifi on the flight +Is the wifi available for the use of the passengers?,878,You want to see if there’s wifi on the flight +Is WI-FI Available Inside Flight?,879,You want to see if there’s wifi on the flight +Is there’s WiFi on the flight?,880,You want to see if there’s wifi on the flight +"Sorry, there are no airplane wi-fi?",881,You want to see if there’s wifi on the flight +"There is wifi on the flight, it would be very useful for me not to get bored.",882,You want to see if there’s wifi on the flight +Is there wifi in the plane,884,You want to see if there’s wifi on the flight +there is wifi signal on the plane?,886,You want to see if there’s wifi on the flight +Is there wifi on the flight?,887,You want to see if there’s wifi on the flight +I would like to know if there is a Wi-Fi connection on the flight,888,You want to see if there’s wifi on the flight +hi could you please tell me again the information that i did not understand,890,You want to see if there’s wifi on the flight +wi-fi will be available on the flight,891,You want to see if there’s wifi on the flight +Is there’s wifi on the flight?,892,You want to see if there’s wifi on the flight +is there wifi service on the flight ?,894,You want to see if there’s wifi on the flight +"HELLO, WILL I HAVE FREE WIFI TO CONNECT MY PHONE?",895,You want to see if there’s wifi on the flight +Do you have Wi-Fi on your flight?,896,You want to see if there’s wifi on the flight +Is there wifi available on the flight?,898,You want to see if there’s wifi on the flight +during the flight open wifi,899,You want to see if there’s wifi on the flight +hi could you please tell me again the information that i did not understand,900,You want to see if there’s wifi on the flight +Can you help me get a new flight?,901,You want to see if there’s wifi on the flight +Do you have Wi-Fi on the plane?,904,You want to see if there’s wifi on the flight +Can you tell me if there's wifi on the flight?,905,You want to see if there’s wifi on the flight +in tourist class there is wifi?,906,You want to see if there’s wifi on the flight +is there a wifi on the flight ?,908,You want to see if there’s wifi on the flight +Is there wifi on the flight?,909,You want to see if there’s wifi on the flight +Is there wifi on the flight,910,You want to see if there’s wifi on the flight +Do you have Wi-Fi service on the flight?,911,You want to see if there’s wifi on the flight +i want to see if there’s wifi on the flight,912,You want to see if there’s wifi on the flight +can I bring my pet on board,913,You want to see if you can bring your pet on the plane +I would like to know if they allow animals on the plane?,914,You want to see if you can bring your pet on the plane +Can I take the dog with me to the cabin?,915,You want to see if you can bring your pet on the plane +Are pets allowed on the plane,916,You want to see if you can bring your pet on the plane +Do you allow animals on the plane?,918,You want to see if you can bring your pet on the plane +What's your policy for pets?,919,You want to see if you can bring your pet on the plane +Can you carry your pet?,920,You want to see if you can bring your pet on the plane +Cual es el procedimiento para llevar mi mascota?,923,You want to see if you can bring your pet on the plane +hi could you please tell me again the information that i did not understand,924,You want to see if you can bring your pet on the plane +Are pets allowed on the flight,925,You want to see if you can bring your pet on the plane +May I bring my pet on the plane?,927,You want to see if you can bring your pet on the plane +hi could you please tell me again the information that i did not understand,929,You want to see if you can bring your pet on the plane +I could take my dog on the flight,930,You want to see if you can bring your pet on the plane +my dog can travel with me,931,You want to see if you can bring your pet on the plane +i want to bring my pet how can i do that?,933,You want to see if you can bring your pet on the plane +there is possibility of traveling with my dog,936,You want to see if you can bring your pet on the plane +Can you help me get a new flight?,938,You want to see if you can bring your pet on the plane +What is forbidden on the plane?,939,You want to see if you can bring your pet on the plane +Can I bring my pet on the plane?,940,You want to see if you can bring your pet on the plane +Can I bring my pet on the plane?,941,You want to see if you can bring your pet on the plane +can i bring my pet on the plane ?,943,You want to see if you can bring your pet on the plane +Can I bring my pet on the plane?,945,You want to see if you can bring your pet on the plane +Where can I ask about taking my dog ​​on the plane?,946,You want to see if you can bring your pet on the plane +I would like to know if I could take my pet on the plane next to me?,947,You want to see if you can bring your pet on the plane +Can I bring my pet on the plane,948,You want to see if you can bring your pet on the plane +Can I bring my pet on the plane?,949,You want to see if you can bring your pet on the plane +I love travelling with my pet,950,You want to see if you can bring your pet on the plane +I could orient myself to see if I can take my pet on the plane,951,You want to see if you can bring your pet on the plane +how do I sign up for the frequent flyer program,953,You want to sign up for a frequent flyer program +Is there a frequent flyer program?,954,You want to sign up for a frequent flyer program +I want to sign up for a frequent flyer program.,955,You want to sign up for a frequent flyer program +IN THIS AIRPORT DO YOU HAVE A FREQUENT TRAVELER PLAN?,956,You want to sign up for a frequent flyer program +Can i sign up for a frequent flyer program?,957,You want to sign up for a frequent flyer program +Do you have a frequent flier program to sign up?,958,You want to sign up for a frequent flyer program +Sign me up please in the program,959,You want to sign up for a frequent flyer program +"I would like to register for the frequent flyer program, what is the process like?",960,You want to sign up for a frequent flyer program +I want to sign up for a frequent flyer program,962,You want to sign up for a frequent flyer program +What are the travel packages available?,964,You want to sign up for a frequent flyer program +I want to sign up for a frequent flyer program.,965,You want to sign up for a frequent flyer program +I would like to register the frequent travelers,966,You want to sign up for a frequent flyer program +details to belong to frequent flyer plan?,967,You want to sign up for a frequent flyer program +hi could you please tell me again the information that i did not understand,968,You want to sign up for a frequent flyer program +What is the frequent flyer program to register?,969,You want to sign up for a frequent flyer program +Can you assist me to sign up for a frequent flyer program?,970,You want to sign up for a frequent flyer program +i want to sign up for frequent flyer program,972,You want to sign up for a frequent flyer program +WHAT ARE THE REQUIREMENTS AND BENEFITS OF THE SERVICE?,973,You want to sign up for a frequent flyer program +What are loyalty programs?,974,You want to sign up for a frequent flyer program +how can you register it?,975,You want to sign up for a frequent flyer program +"Good, how much does it cost to register on a tour?",976,You want to sign up for a frequent flyer program +I would like to be part of the frequent flyer program,977,You want to sign up for a frequent flyer program +hi could you please tell me again the information that i did not understand,978,You want to sign up for a frequent flyer program +Can you help me get a new flight?,979,You want to sign up for a frequent flyer program +I want to subscribe to the frequent flyer program,981,You want to sign up for a frequent flyer program +How can I register for a frequent flyer program?,982,You want to sign up for a frequent flyer program +Can you give me information to sign up on a flyer program?,983,You want to sign up for a frequent flyer program +what are the requirements to opt for frequent traveler,984,You want to sign up for a frequent flyer program +i want to sign up for a frequent flyer program,986,You want to sign up for a frequent flyer program +I want to sign up for a frequent flyer program.,987,You want to sign up for a frequent flyer program +How It Works - Friend - Avianca,988,You want to sign up for a frequent flyer program +How can I sign for a frequent flyer program,989,You want to sign up for a frequent flyer program +I need to register as a frequent flyer,990,You want to sign up for a frequent flyer program +can i sign up for a frequent flyer program ?,991,You want to sign up for a frequent flyer program +has my lost luggage been found yet,992,You’re checking if the airline has found your lost luggage +"my luggage does not appear, what can I do to locate it?",993,You’re checking if the airline has found your lost luggage +"I did not get my luggage, what should I do?",994,You’re checking if the airline has found your lost luggage +I want to know the status of my lost luggage,995,You’re checking if the airline has found your lost luggage +Did you find my lost bags?,997,You’re checking if the airline has found your lost luggage +I would like to know about lost Luggage.,998,You’re checking if the airline has found your lost luggage +They found my lost luggage?,999,You’re checking if the airline has found your lost luggage +Cuando me daran respuesta de mi equipaje?,1001,You’re checking if the airline has found your lost luggage +hi could you please tell me again the information that i did not understand,1002,You’re checking if the airline has found your lost luggage +Where is luggage lost department,1003,You’re checking if the airline has found your lost luggage +Have you found my lost luggage?,1005,You’re checking if the airline has found your lost luggage +Have you found my luggage?,1006,You’re checking if the airline has found your lost luggage +hi could you please tell me again the information that i did not understand,1007,You’re checking if the airline has found your lost luggage +I would like to know if they found my luggage,1008,You’re checking if the airline has found your lost luggage +hi i lost my luggage when you gonna find it,1009,You’re checking if the airline has found your lost luggage +I would like to know if my luggage showed up,1014,You’re checking if the airline has found your lost luggage +Can you help me get a new flight?,1016,You’re checking if the airline has found your lost luggage +Please . Have you found my lost luggage?,1017,You’re checking if the airline has found your lost luggage +Can you help me to know if you find my luggage?,1018,You’re checking if the airline has found your lost luggage +Where can I check my lost luggage?,1019,You’re checking if the airline has found your lost luggage +are you found my lost luggage ?,1021,You’re checking if the airline has found your lost luggage +Has my luggage been found yet?,1022,You’re checking if the airline has found your lost luggage +Can you update me about my lost luggage,1023,You’re checking if the airline has found your lost luggage +I need reports on my lost luggage,1024,You’re checking if the airline has found your lost luggage +already found my luggage ??,1025,You’re checking if the airline has found your lost luggage +Has the airline found my luggage,1026,You’re checking if the airline has found your lost luggage +Does the airline find my lost luggage?,1027,You’re checking if the airline has found your lost luggage +Please did u see my luggage,1028,You’re checking if the airline has found your lost luggage +can you help me find my luggage please,1029,You’re checking if the airline has found your lost luggage +what can I do as I am going to miss my connecting flight,1031,You’re going to miss your connecting flight and want to check on your other options +What can I do in case I can not reach my connecting flight?,1032,You’re going to miss your connecting flight and want to check on your other options +When is the next flight?,1033,You’re going to miss your connecting flight and want to check on your other options +What flights do you have available,1034,You’re going to miss your connecting flight and want to check on your other options +What options are available if i miss the trip?,1036,You’re going to miss your connecting flight and want to check on your other options +Help me find another flight.,1037,You’re going to miss your connecting flight and want to check on your other options +"I want to see more flight options, please.",1038,You’re going to miss your connecting flight and want to check on your other options +Que vuelos están disponibles para conectarme al arribar?,1040,You’re going to miss your connecting flight and want to check on your other options +hi could you please tell me again the information that i did not understand,1041,You’re going to miss your connecting flight and want to check on your other options +When is next possible flight available for destination.,1042,You’re going to miss your connecting flight and want to check on your other options +Do I have other options?,1044,You’re going to miss your connecting flight and want to check on your other options +what happens if I lose my connection to the other plane?,1045,You’re going to miss your connecting flight and want to check on your other options +hi could you please tell me again the information that i did not understand,1046,You’re going to miss your connecting flight and want to check on your other options +I will miss my flight that other connections are available,1047,You’re going to miss your connecting flight and want to check on your other options +if i lost my flight do i had new options,1048,You’re going to miss your connecting flight and want to check on your other options +Which other alternative connecting flight?,1049,You’re going to miss your connecting flight and want to check on your other options +i missed my flight what are they options?,1050,You’re going to miss your connecting flight and want to check on your other options +Can you help me get a new flight?,1055,You’re going to miss your connecting flight and want to check on your other options +There are additional options,1056,You’re going to miss your connecting flight and want to check on your other options +Can you help me? I'm going to miss my connecting flight and I want to know if there is another option.,1057,You’re going to miss your connecting flight and want to check on your other options +Can I book for the next flight?,1058,You’re going to miss your connecting flight and want to check on your other options +"iam going to miss my connecting flight, is there an other option ?",1060,You’re going to miss your connecting flight and want to check on your other options +I'm running late and need to change connecting flights.,1061,You’re going to miss your connecting flight and want to check on your other options +"I will not be able to catch my arranged flight, please tell me what options do I have?",1062,You’re going to miss your connecting flight and want to check on your other options +IF I LOSE MY CONNECTION FLIGHT WHAT OPTION DO I HAVE?,1063,You’re going to miss your connecting flight and want to check on your other options +I need to know another flight option?,1064,You’re going to miss your connecting flight and want to check on your other options +Going to miss my connecting flight and what are my options,1065,You’re going to miss your connecting flight and want to check on your other options +How much does it cost to change my flight?,1066,You’re going to miss your connecting flight and want to check on your other options +When is the next flight leaving,1067,You’re going to miss your connecting flight and want to check on your other options +I will be able to book another flight since I will lose mine,1068,You’re going to miss your connecting flight and want to check on your other options +Im worried about the weather and its implications on my flight. Is it safe?,1071,You’re worried about the weather and its implications on your flight +I COULD SAY IF THERE WILL BE A LOT OF TURBULENCE DURING THE FLIGHT,1072,You’re worried about the weather and its implications on your flight +Will I have any cost if the connection of the flight takes and I lose?,1073,You’re worried about the weather and its implications on your flight +What is the effect of the weather on the trip?,1074,You’re worried about the weather and its implications on your flight +if only a little but I trust that we can get well,1075,You’re worried about the weather and its implications on your flight +Will the weather affect my flight?,1076,You’re worried about the weather and its implications on your flight +I worry about the weather.,1077,You’re worried about the weather and its implications on your flight +Pasaremos por zona de tormentas?,1078,You’re worried about the weather and its implications on your flight +Will my plane take off?,1079,You’re worried about the weather and its implications on your flight +What are the possibilities of the plain eingdelayed due to the bad weather?,1081,You’re worried about the weather and its implications on your flight +"If rainfall continues to occur, I will change the flight",1082,You’re worried about the weather and its implications on your flight +I am worried about the weather and its implications on the flight,1083,You’re worried about the weather and its implications on your flight +there is some danger of traveling in this climate,1084,You’re worried about the weather and its implications on your flight +Is it dangerous to travel in this climate?,1085,You’re worried about the weather and its implications on your flight +hi could you please tell me again the information that i did not understand,1086,You’re worried about the weather and its implications on your flight +is possible flight with this weather,1087,You’re worried about the weather and its implications on your flight +Will the weather be worst for the flight?,1088,You’re worried about the weather and its implications on your flight +"No, I'm not fear of that",1091,You’re worried about the weather and its implications on your flight +When is your flight taking off?,1092,You’re worried about the weather and its implications on your flight +Are you sure this flight will not be delayed due to the weather?,1093,You’re worried about the weather and its implications on your flight +please can you help me beacuse i worried about the weather ?,1095,You’re worried about the weather and its implications on your flight +I would like to know what the weather affects the trip,1096,You’re worried about the weather and its implications on your flight +Are taxis available to book right now?,1097,You’re worried about the weather and its implications on your flight +Can you tell me how is the weather? I'm worried because I'm going to take a flight.,1099,You’re worried about the weather and its implications on your flight +how will the weather be ?,1101,You’re worried about the weather and its implications on your flight +What consequences could the weather have on my flight?,1102,You’re worried about the weather and its implications on your flight +I want to cancel my trip because of the weather,1103,You’re worried about the weather and its implications on your flight +Is there any change due to bad weather on my flight?,1104,You’re worried about the weather and its implications on your flight +How dangerous is traveling with the weather like this?,1105,You’re worried about the weather and its implications on your flight +Is the weather going to affect the flight,1107,You’re worried about the weather and its implications on your flight +Will the weather implicate my flight,1108,You’re worried about the weather and its implications on your flight +Is it safe to fly in bad weather?,1109,You’re worried about the weather and its implications on your flight +Do you have a lost & found department? I lost my bag.,1111,Your bag was lost +Who do I contact about lost Luggage?,1112,Your bag was lost +"I lost my bag, it would help me get it",1114,Your bag was lost +Where can I find my bag?,1115,Your bag was lost +Can you help me find my bag?,1116,Your bag was lost +there will be some way to get my bag,1117,Your bag was lost +"I just arrived to my destination, but my bag is lost, could you help me?",1118,Your bag was lost +Where can I report a lost bag?,1119,Your bag was lost +"Please help, my purse was stolen!",1120,Your bag was lost +"Please, I lost my purse, could you tell me where I can get help?",1122,Your bag was lost +"My bag is lost, What am I supposed to do?",1125,Your bag was lost +My bag is missing and i have very important documents in it.,1126,Your bag was lost +I lost my package could help me get it,1127,Your bag was lost +hi could you please tell me again the information that i did not understand,1128,Your bag was lost +my bag was lost I could help her,1129,Your bag was lost +How may I find my lost bag?,1130,Your bag was lost +i have lost my bag so is there any possibility to repack it,1133,Your bag was lost +What happened with my bag?,1134,Your bag was lost +Can you help me get a new flight?,1138,Your bag was lost +where the lost objects department is located,1140,Your bag was lost +How do I file the complaint?,1141,Your bag was lost +Please help me my bag was lost.,1142,Your bag was lost +"I can not find my bag, help",1145,Your bag was lost +I need you to please respond for my bag,1146,Your bag was lost +My luggage is gone. Do I have insurance?,1147,Your bag was lost +Can I get a refund for it?,1148,Your bag was lost +My flight was canceled. Can I get a new one?,1150,Your flight was cancelled and you need to get on another one +I need to travel urgently in the next,1151,Your flight was cancelled and you need to get on another one +I would like to book another flight because the other one was cancelled.,1152,Your flight was cancelled and you need to get on another one +When is your next available flight?,1153,Your flight was cancelled and you need to get on another one +Can you help me get a new flight?,1154,Your flight was cancelled and you need to get on another one +I missed my flight and got to reach my destination.,1156,Your flight was cancelled and you need to get on another one +"My flight was cancelled, can I get another one?",1157,Your flight was cancelled and you need to get on another one +Help pick your next flight,1158,Your flight was cancelled and you need to get on another one +"Excuse me, my flight has been cancelled, but I need to travel, is there another flight to the same destination?",1159,Your flight was cancelled and you need to get on another one +ı need an important job to do have you got any other,1161,Your flight was cancelled and you need to get on another one +what time does the first time come,1163,Your flight was cancelled and you need to get on another one +What is the most immediate flight?,1164,Your flight was cancelled and you need to get on another one +hi could you please tell me again the information that i did not understand,1165,Your flight was cancelled and you need to get on another one +I could have booked another flight,1166,Your flight was cancelled and you need to get on another one +I need to get to another flight,1167,Your flight was cancelled and you need to get on another one +can you help me get a new flight ?,1168,Your flight was cancelled and you need to get on another one +i want to take new flight how can i do?,1169,Your flight was cancelled and you need to get on another one +"my flight was canceled as I get on another flight flightflīt Definitions of flight noun the action or process of flying through the air. an eagle in flight synonyms: aviation, flying, air transport, aerial navigation, aeronautics a group of creatures or objects flying together, in particular. We briefed for a two-ship formation flight in one of the local military operating areas. verb shoot (wildfowl) in flight. duck and geese flighting 5 more definitions See also Flight, flight attendant, flight mode, flight number, direct flight, flight deck, flight schedule, return flight, flight ticket, space flight, flight crew Translations of flight noun рейс flight, voyage, cruise, trip, run, journey полет flight, fly, voyage, run, hop, passing перелет flight, hop, migration, passage, voyage, over бегство escape, flight, getaway, stampede, evasion, bolt побег escape, shoot, runaway, flight, sprout, getaway стая flock, pack, flight, school, swarm, bevy отступление retreat, deviation, departure, digression, fallback, flight порыв impulse, gust, fit, burst, puff, flight лестничный марш flight of stairs, stairway, flight залп volley, salvo, discharge, round, flight подъем rise, lifting, lift, climb, ascent, flight adjective полетный flight 15 more translations",1170,Your flight was cancelled and you need to get on another one +"Please, I need to fly as soon as possible.",1173,Your flight was cancelled and you need to get on another one +hi could you please tell me again the information that i did not understand,1174,Your flight was cancelled and you need to get on another one +Can you help me get a new flight?,1175,Your flight was cancelled and you need to get on another one +What is the reason of my flight being cancelled?,1177,Your flight was cancelled and you need to get on another one +When is the next flight?,1178,Your flight was cancelled and you need to get on another one +for when is there another flight available ??,1179,Your flight was cancelled and you need to get on another one +What other flights are in the right direction?,1180,Your flight was cancelled and you need to get on another one +When will be the closest trip,1183,Your flight was cancelled and you need to get on another one +Please find the earliest direct flight for me,1184,Your flight was cancelled and you need to get on another one +my flight was cancelled and i ask about the available ones,1185,Your flight was cancelled and you need to get on another one +When is the next flight scheduled?,1186,Your flight was cancelled and you need to get on another one +I need another urgent return,1187,Your flight was cancelled and you need to get on another one +my flight was cancelled and ineed to get on another one,1188,Your flight was cancelled and you need to get on another one +I won't travel in your airlines another tme.,0,You are threatening to never to use this airline again +"Not only that I myself will never use your airline, I ll tell all my friends and collegues not to use your airline.",1,You are threatening to never to use this airline again +THEY TREAT VERY EVIL TO PEOPLE AND ARE RETARDED NOT TO REPEAT THIS SERVCIO,2,You are threatening to never to use this airline again +Why do you usually delay the flights so much? They're going to lose customers.,3,You are threatening to never to use this airline again +I will book on another air line,4,You are threatening to never to use this airline again +they could send my complaint to their superiors,5,You are threatening to never to use this airline again +I'm done with your airlines!,6,You are threatening to never to use this airline again +"On this flight, poor service!",7,You are threatening to never to use this airline again +"No volveré a viajar con uds, cual es la causa de tanto retraso?",8,You are threatening to never to use this airline again +I am so late due to the poor service this airline gives!,11,You are threatening to never to use this airline again +I am thinking about not using this airline again.,13,You are threatening to never to use this airline again +the worst flight of my life will not travel again in this airline,14,You are threatening to never to use this airline again +Does the airline have the same problems?,15,You are threatening to never to use this airline again +hi could you please tell me again the information that i did not understand,16,You are threatening to never to use this airline again +why this is happening,17,You are threatening to never to use this airline again +To who do I talk to- I'd never to use this airline again!,18,You are threatening to never to use this airline again +"i dont what to fly this airfly, what happened? if i change my chair?",20,You are threatening to never to use this airline again +"If you can't solve my problem, may be I could change this airline",21,You are threatening to never to use this airline again +Did a flight attendant offend you?,22,You are threatening to never to use this airline again +"Should this subject is not solved by tomorrow, I will never use this airline again.",23,You are threatening to never to use this airline again +what can i do it's so bad airline and it's last time !,25,You are threatening to never to use this airline again +I will not use your services again,26,You are threatening to never to use this airline again +Are taxis available to book right now?,27,You are threatening to never to use this airline again +This airline is bad the service is too poor,29,You are threatening to never to use this airline again +i will stop using this airline,31,You are threatening to never to use this airline again +I will not use this airline again.,32,You are threatening to never to use this airline again +I have committed something wrong so I can not travel to this place,33,You are threatening to never to use this airline again +"are the worst airline, there are better ones to fly, I will never do it with you",34,You are threatening to never to use this airline again +the storage of luggage lasts a lot,35,You are threatening to never to use this airline again +Want you to know I will never use this airline again,37,You are threatening to never to use this airline again +Want you to know I will never use this airline again,38,You are threatening to never to use this airline again +Why I must to declare everything I take with myself?,39,You are threatening to never to use this airline again +Is it possible to change my flight for another? Same destination but different time?,40,You booked a flight for the wrong day and need to change it +I will have to pay something else,41,You booked a flight for the wrong day and need to change it +Would you mind helping me to change the date of my booked flight,42,You booked a flight for the wrong day and need to change it +Do you have any charges for rebooking a flight?,43,You booked a flight for the wrong day and need to change it +there are flights for this date?,44,You booked a flight for the wrong day and need to change it +"My flight is on the wrong date, I need another date.",46,You booked a flight for the wrong day and need to change it +Can I change the time of my trip?,47,You booked a flight for the wrong day and need to change it +"I not correctly booked, how to change the flight?",48,You booked a flight for the wrong day and need to change it +"I've tried to change it on the internet, why isn't it possible?",49,You booked a flight for the wrong day and need to change it +what is the penalty for changing my flight,53,You booked a flight for the wrong day and need to change it +I need availability for a day other than the one already booked,54,You booked a flight for the wrong day and need to change it +hi could you please tell me again the information that i did not understand,55,You booked a flight for the wrong day and need to change it +could I change my ticket,56,You booked a flight for the wrong day and need to change it +I need to change the day of the booked flight,57,You booked a flight for the wrong day and need to change it +my date is wrong can you fix it ?,58,You booked a flight for the wrong day and need to change it +"how can i change my flight? if i go wrong day, what will happened?",59,You booked a flight for the wrong day and need to change it +"tell me please, I booked the flight on the wrong day, how can I fix it?",60,You booked a flight for the wrong day and need to change it +please kindly do this favor for me.,62,You booked a flight for the wrong day and need to change it +what possibilities did it open to change the day of my flight,63,You booked a flight for the wrong day and need to change it +hi could you please tell me again the information that i did not understand,64,You booked a flight for the wrong day and need to change it +can i change the date ?,65,You booked a flight for the wrong day and need to change it +Yes I made a mistake I want to change my travelling schedule.,67,You booked a flight for the wrong day and need to change it +Can i change my ticket?,68,You booked a flight for the wrong day and need to change it +I need to change my flight reservation,69,You booked a flight for the wrong day and need to change it +How much money do I need to pay for changing the date on the ticket?,70,You booked a flight for the wrong day and need to change it +I want to book a new date for my trip,73,You booked a flight for the wrong day and need to change it +"Somehow I have made an error on my booking day, I want to change it, can you help me?",74,You booked a flight for the wrong day and need to change it +what about changing the flight day please,75,You booked a flight for the wrong day and need to change it +I need to check availability for another day,76,You booked a flight for the wrong day and need to change it +I would charge something extra for the ticket change ??,77,You booked a flight for the wrong day and need to change it +i would like to chaing the booked flight for the wrong day,78,You booked a flight for the wrong day and need to change it +as the flight was very bad I would like a partial refund,80,You had a bad flight and want some money back +"I have not received the services offered by the airline, I will report the case before the police and I will demand my money back",81,You had a bad flight and want some money back +Will I get the full amount?,82,You had a bad flight and want some money back +I should be entitled to some money,83,You had a bad flight and want some money back +Can I recover some of my money as compensation for the disadvantages of the trip?,85,You had a bad flight and want some money back +Can I ask for a refund?,86,You had a bad flight and want some money back +My flight was terrible!,87,You had a bad flight and want some money back +"My flight was heavy, I want my money.",88,You had a bad flight and want some money back +"Quien es responsable de tan pesimo vuelo, me darian un reconocimiento monetario para no mir al tribunal",90,You had a bad flight and want some money back +hi could you please tell me again the information that i did not understand,91,You had a bad flight and want some money back +what the process for partial refund,92,You had a bad flight and want some money back +We had a bad flight and you have to pay us some money back,94,You had a bad flight and want some money back +Why do you ask for extra money?,95,You had a bad flight and want some money back +hi could you please tell me again the information that i did not understand,96,You had a bad flight and want some money back +was decadent the flight and does not meet the stipulated expectations that would give me to brighten the day,97,You had a bad flight and want some money back +my flight is delay for weather i want my money back,98,You had a bad flight and want some money back +I need a compensation for a bad flight,99,You had a bad flight and want some money back +i want to money back please help me? can you help ?,100,You had a bad flight and want some money back +I demand a remuneration,103,You had a bad flight and want some money back +Can you help me get a new flight?,105,You had a bad flight and want some money back +I was a bad trip I needed money please,106,You had a bad flight and want some money back +"I need some of my money back, this flight was bad.",107,You had a bad flight and want some money back +How can I request a refund?,108,You had a bad flight and want some money back +i want ti get my money back because it was a bad flight,110,You had a bad flight and want some money back +Can I receive a refund for a bad flight I had?,111,You had a bad flight and want some money back +"Due to my bad flight my sickness get worse and so I now have to go to a doctor. Your company has to visit my doctor. So, I need my money back to cover my expenses that are caused by your company.",112,You had a bad flight and want some money back +where do I ask for compensation for the delay in the flight this morning?,113,You had a bad flight and want some money back +paid for a good flight and was poor attention,114,You had a bad flight and want some money back +Really Had a bad flight now I need a refund,115,You had a bad flight and want some money back +Until when I can submit complaint?,116,You had a bad flight and want some money back +The services being offer is of low standard,117,You had a bad flight and want some money back +real mente tuve un mal vuelo necesito dinero,118,You had a bad flight and want some money back +when is the next flight,120,You missed a very important flight and need one as soon as possible +Is there a seat on next flight?,121,You missed a very important flight and need one as soon as possible +I JUST ARRIVED AND CAN NOT TAKE MY FLIGHT I CAN GET TO ADDRESS THE FOLLOWING FLIGHT,123,You missed a very important flight and need one as soon as possible +I want to book in the nearest available flight because I missed my trip,124,You missed a very important flight and need one as soon as possible +Can I travel with another flight?,125,You missed a very important flight and need one as soon as possible +As soon as the next flight?,126,You missed a very important flight and need one as soon as possible +I'd like to know what time is the next flight of the plane that just left for the same destination?,127,You missed a very important flight and need one as soon as possible +When is the next flight?,129,You missed a very important flight and need one as soon as possible +I really need to book another flight!,131,You missed a very important flight and need one as soon as possible +I need a flight ASAP because i missed a very important one.,132,You missed a very important flight and need one as soon as possible +"I would like the first flight to, because I lost the previous one",133,You missed a very important flight and need one as soon as possible +How much does a last minute flight cost on any airline?,134,You missed a very important flight and need one as soon as possible +hi could you please tell me again the information that i did not understand,135,You missed a very important flight and need one as soon as possible +I would like to sallir on the first flight because I lost mine,136,You missed a very important flight and need one as soon as possible +Can you assist me to sign up for a frequent flyer program?,137,You missed a very important flight and need one as soon as possible +is there another flight today?,139,You missed a very important flight and need one as soon as possible +I NEED TO FLY AS SOON AS POSSIBLE,140,You missed a very important flight and need one as soon as possible +What is the first available flight schedule ?,141,You missed a very important flight and need one as soon as possible +the closest flight time is how many pounds?,142,You missed a very important flight and need one as soon as possible +I really need to book another flight!,143,You missed a very important flight and need one as soon as possible +I need to get off on the next flight,144,You missed a very important flight and need one as soon as possible +hi could you please tell me again the information that i did not understand,145,You missed a very important flight and need one as soon as possible +Can you help me get a new flight?,146,You missed a very important flight and need one as soon as possible +"Please, I need a flight now, because I lost mine !!",149,You missed a very important flight and need one as soon as possible +I missed a important flight and I need one as soon as possible.,150,You missed a very important flight and need one as soon as possible +please two tickets to the first flight to spain,151,You missed a very important flight and need one as soon as possible +i want to book a flight as soon as possible,153,You missed a very important flight and need one as soon as possible +I would be very relief if you can find a new flght.,154,You missed a very important flight and need one as soon as possible +what is the possibility of achieving,155,You missed a very important flight and need one as soon as possible +Really need a flight as soon as possible,156,You missed a very important flight and need one as soon as possible +"I missed my flight and I need another one, will you help me?",157,You missed a very important flight and need one as soon as possible +i want to book a ticket,158,You missed a very important flight and need one as soon as possible +how can I change my flight,159,You need to change your flight +Can I get my ticket replaced with another booking?,160,You need to change your flight +Is there a possibility to change my flight for another?,161,You need to change your flight +I whant to change my flight. Is this a problem?,162,You need to change your flight +I need an evening flight.,163,You need to change your flight +I need to change my itinerary.,165,You need to change your flight +CAN I CHANGE THE FOLLOWING FLIGHT?,166,You need to change your flight +How do I change flights?,167,You need to change your flight +What flight options do I have?,168,You need to change your flight +can you put me on another flight,169,You need to change your flight +Can I reschedule my trip?,170,You need to change your flight +Tell me the available dates,171,You need to change your flight +could you give me the new dates,172,You need to change your flight +"I'm stuck in heavy traffic, can I change my flight?",173,You need to change your flight +Is there an option for me to change my flight?,174,You need to change your flight +How can I change my flight?,175,You need to change your flight +Could you change my flight?,176,You need to change your flight +My plans have changed and I need the next flight.,177,You need to change your flight +Can I book it for next month?,179,You need to change your flight +"Podria ud cambiar mi vuelo, no tengo enlace en este",180,You need to change your flight +What other schedules are available?,181,You need to change your flight +How can i do to change my flight?,184,You need to change your flight +What are the options for changing my flight?,185,You need to change your flight +May I change my flight?,187,You need to change your flight +May I change my flight?,188,You need to change your flight +How can i change my flight?,189,You need to change your flight +would you kindly change my address,190,You need to change your flight +I would like to change my reservation,191,You need to change your flight +Which airline has flights for tomorrow?,192,You need to change your flight +hi could you please tell me again the information that i did not understand,193,You need to change your flight +hi could you please tell me again the information that i did not understand,194,You need to change your flight +I could change my flight,195,You need to change your flight +i need be here for so long can i change my flight,196,You need to change your flight +Help me to change my flight,197,You need to change your flight +Help me to change my flight?,198,You need to change your flight +i need change my flight by another,201,You need to change your flight +And also i have to change my chair?,202,You need to change your flight +Which departures times are available?,203,You need to change your flight +Which other location ticket do you want?,204,You need to change your flight +is it in the night or in the morning,205,You need to change your flight +It's possible to change my flight?,206,You need to change your flight +"I need to stay a couple more days her, can you change my flight?",207,You need to change your flight +how can i take another flight please ?,209,You need to change your flight +I need to change my flight,211,You need to change your flight +I want to change the date,212,You need to change your flight +Can you help me get a new flight?,214,You need to change your flight +Are taxis available to book right now?,215,You need to change your flight +I needed to change the trip for necessity,217,You need to change your flight +How do I change my flight?,218,You need to change your flight +Can you change my flight?,220,You need to change your flight +I need to change my flight,221,You need to change your flight +can i change my flight?,225,You need to change your flight +I really need to change my flight.,226,You need to change your flight +I want to change my flight to Monday,227,You need to change your flight +"I need to change the flight, could you help me?",228,You need to change your flight +Where do I go to make the change of flight?,229,You need to change your flight +I can not travel that day,230,You need to change your flight +I need to change my flight,231,You need to change your flight +Want to know if can change my flight,233,You need to change your flight +How can I change my flight,234,You need to change your flight +For a change of flight schedule will I have to bear what costs?,235,You need to change your flight +How much money does it cost to change my flight?,236,You need to change your flight +Does my additional assurance cover other flight?,237,You need to change your flight +can i please hange my flight ?,238,You need to change your flight +are there any direct flights,239,You need to check if there are any direct flights to your location +Do you have a direct flight to place Im going?,240,You need to check if there are any direct flights to your location +I'm only interested in direct flights direct,241,You need to check if there are any direct flights to your location +How many flights are there to this destination thanks,243,You need to check if there are any direct flights to your location +Find direct flights to my location.,244,You need to check if there are any direct flights to your location +Are there direct flights to my destination?,245,You need to check if there are any direct flights to your location +how to know if there are direct flights to my destination,246,You need to check if there are any direct flights to your location +"I need a direct flight to my location, do you offer any?",247,You need to check if there are any direct flights to your location +Can I fly directly to Thessaloniki?,248,You need to check if there are any direct flights to your location +"Sorry, I would like to know if there's a line my way",249,You need to check if there are any direct flights to your location +How long does the flight last?,251,You need to check if there are any direct flights to your location +Where can I ask if there are direct flights?,253,You need to check if there are any direct flights to your location +Is a direct flight available to Cairo?,254,You need to check if there are any direct flights to your location +There's available any flight to New York this saturday?,255,You need to check if there are any direct flights to your location +hay vuelos directos a donde me dirijo,256,You need to check if there are any direct flights to your location +hi could you please tell me again the information that i did not understand,257,You need to check if there are any direct flights to your location +could you tell me if there are direct flights,258,You need to check if there are any direct flights to your location +Is there any direct flights to my location,259,You need to check if there are any direct flights to your location +i need know if there are any direct flights for Usa,261,You need to check if there are any direct flights to your location +can u change my flight to it,262,You need to check if there are any direct flights to your location +What options do I have to get home?,263,You need to check if there are any direct flights to your location +there are direct flights to my location,265,You need to check if there are any direct flights to your location +Can you help me get a new flight?,267,You need to check if there are any direct flights to your location +How long does London's direct flight take?,268,You need to check if there are any direct flights to your location +Where can I find the direct flights?,269,You need to check if there are any direct flights to your location +I want to know if there are any direct flights to my location.,271,You need to check if there are any direct flights to your location +I have to check for direct flights?,274,You need to check if there are any direct flights to your location +I do not want to scale and I need the direct flight,275,You need to check if there are any direct flights to your location +I would like a non-stop two-person flight,276,You need to check if there are any direct flights to your location +When will be the direct flight to my location?,277,You need to check if there are any direct flights to your location +can you please tell me if there are any direct flights to my location?,278,You need to check if there are any direct flights to your location +How much weight can I have in my bags?,279,You need to know the maximum weight for a checked bag +my second luggage how much?,280,You need to know the maximum weight for a checked bag +What is the maximum weight for hand luggage?,281,You need to know the maximum weight for a checked bag +When does insurance charge against theft or loss of luggage without having to pay anything else?,283,You need to know the maximum weight for a checked bag +What is the allowable baggage weight allowance for the trip?,284,You need to know the maximum weight for a checked bag +What is the maximum weight for checked bag?,285,You need to know the maximum weight for a checked bag +How much is the maximum that each suitcase should weigh?,286,You need to know the maximum weight for a checked bag +What is the weight of one Luggage?,287,You need to know the maximum weight for a checked bag +Do you have any information about weight?,288,You need to know the maximum weight for a checked bag +hi could you please tell me again the information that i did not understand,290,You need to know the maximum weight for a checked bag +Is there any extra cost for my bag?,292,You need to know the maximum weight for a checked bag +"Please, tell me the maximum weight for a checked bag",294,You need to know the maximum weight for a checked bag +I could know the maximum weight of the suitcases,295,You need to know the maximum weight for a checked bag +Can you please measure my bag and tell me if I can check in with it?,296,You need to know the maximum weight for a checked bag +hi could you please tell me again the information that i did not understand,297,You need to know the maximum weight for a checked bag +What is the maximum weight for a checked bag?,298,You need to know the maximum weight for a checked bag +"I have bags, what's max weight for them?",299,You need to know the maximum weight for a checked bag +how much weight baggage? how can i do ?,300,You need to know the maximum weight for a checked bag +and how much parts also,301,You need to know the maximum weight for a checked bag +Could you tell me what the maximum weight for a checked bag is?,302,You need to know the maximum weight for a checked bag +what is the maximum weight?,303,You need to know the maximum weight for a checked bag +if my bag heavier what the heavier the load ?,304,You need to know the maximum weight for a checked bag +I need to know the maximum weight of my suitcase,305,You need to know the maximum weight for a checked bag +Can you help me get a new flight?,306,You need to know the maximum weight for a checked bag +What is the maximum weight for the examination bag,308,You need to know the maximum weight for a checked bag +How much weight does the suitcase have in the flight?,309,You need to know the maximum weight for a checked bag +"I think I'm overweight in my bags, please tell me how much weight is the most",310,You need to know the maximum weight for a checked bag +what is the maximum weight for a checked bag?,312,You need to know the maximum weight for a checked bag +How much weight am I allowed?,313,You need to know the maximum weight for a checked bag +Do you know the weight limit for each bag?,314,You need to know the maximum weight for a checked bag +can help me by indicating the maximum weight of a registered suitcase!,315,You need to know the maximum weight for a checked bag +where is the weight of luggage?,317,You need to know the maximum weight for a checked bag +What is the maximum weight for luggage?,318,You need to know the maximum weight for a checked bag +I would like to know the process for having a wheelchair available when I land,319,You need to request a wheelchair when you land +Can I use a wheelchair when I land?,320,You need to request a wheelchair when you land +Will the stewards help me with a wheelchair?,321,You need to request a wheelchair when you land +I need to get around with a wheelchair at the landing.,323,You need to request a wheelchair when you land +Can you provide a wheelchair when landing?,324,You need to request a wheelchair when you land +"I can't get out on my own, I would like a wheelchair please?",325,You need to request a wheelchair when you land +Can you help me find a wheelchair when landing?,326,You need to request a wheelchair when you land +You can upon landing to provide me with the wheelchair?,327,You need to request a wheelchair when you land +hi could you please tell me again the information that i did not understand,330,You need to request a wheelchair when you land +How can I ask for a wheelchair?,332,You need to request a wheelchair when you land +I need to request a wheelchair when we land?,334,You need to request a wheelchair when you land +I need assistance when I get off the flight.,335,You need to request a wheelchair when you land +"My daughter is handicapped, I need to obtain a wheelchair for her, can you please assist?",336,You need to request a wheelchair when you land +hi could you please tell me again the information that i did not understand,337,You need to request a wheelchair when you land +I'd like to have wheelchair service when I land.,338,You need to request a wheelchair when you land +"I need a wheelchair, how can I request it?",339,You need to request a wheelchair when you land +Could I be given a wheelchair after landing?,342,You need to request a wheelchair when you land +Where can I request a wheelchair?,343,You need to request a wheelchair when you land +can i order a wheelchair when we land ?,344,You need to request a wheelchair when you land +I need a wheelchair when I go down,345,You need to request a wheelchair when you land +Can you help me get a new flight?,346,You need to request a wheelchair when you land +Please need a wheelchair when landing,348,You need to request a wheelchair when you land +"please, I could request a wheelchair as soon as we landed",349,You need to request a wheelchair when you land +"my wife is a bit dizzy by the flight, please get a wheelchair on the way down",350,You need to request a wheelchair when you land +can you help me with a wheelchair?,352,You need to request a wheelchair when you land +I will need a wheelchair upon landing.,353,You need to request a wheelchair when you land +Who can help me to get a wheelchair?,354,You need to request a wheelchair when you land +Who do I request the wheelchair for when the plane lands?,355,You need to request a wheelchair when you land +I require a wheelchair to descend,357,You need to request a wheelchair when you land +"I need an accessibility service. May I have a wheelchair, please",358,You need to request a wheelchair when you land +Do you know of a travel adisory in the place where Im going to?,359,You need to see if there is a travel advisory in the place you’re flying to +"I could give a coffee, and I could indicate where is the notice of the flight",360,You need to see if there is a travel advisory in the place you’re flying to +Will I be able to find a travel advisory there?,361,You need to see if there is a travel advisory in the place you’re flying to +What does the travel advisory say?,362,You need to see if there is a travel advisory in the place you’re flying to +are there availability to see the places of travel?,363,You need to see if there is a travel advisory in the place you’re flying to +Can I get a reservation flight if it is canceled?,365,You need to see if there is a travel advisory in the place you’re flying to +Can you tell me if is a trvel advisory in Athens?,366,You need to see if there is a travel advisory in the place you’re flying to +Tell me is there any guides out there where we're going,367,You need to see if there is a travel advisory in the place you’re flying to +Where can I reach you?,368,You need to see if there is a travel advisory in the place you’re flying to +where are the warnings,372,You need to see if there is a travel advisory in the place you’re flying to +What ads are available?,373,You need to see if there is a travel advisory in the place you’re flying to +hi could you please tell me again the information that i did not understand,374,You need to see if there is a travel advisory in the place you’re flying to +Could you tell me where the travel advices are?,375,You need to see if there is a travel advisory in the place you’re flying to +Is there a travel advisory to the country?,376,You need to see if there is a travel advisory in the place you’re flying to +how many advisors are they ?,377,You need to see if there is a travel advisory in the place you’re flying to +can I find out if there is a travel consultation in the place I'm flying to,379,You need to see if there is a travel advisory in the place you’re flying to +Is there additional charge for advisory?,381,You need to see if there is a travel advisory in the place you’re flying to +hi could you please tell me again the information that i did not understand,383,You need to see if there is a travel advisory in the place you’re flying to +there is a travel advisory in the place you’re flying to ؟,384,You need to see if there is a travel advisory in the place you’re flying to +What is the travel advisory available in the flight.,386,You need to see if there is a travel advisory in the place you’re flying to +"I need a travel advisory, you can help me?",387,You need to see if there is a travel advisory in the place you’re flying to +I need to know if you have a travel notice for miami !!,388,You need to see if there is a travel advisory in the place you’re flying to +Can you answer the questions about the country of my arrival?,389,You need to see if there is a travel advisory in the place you’re flying to +Are there any tips you want to teach me?,392,You need to see if there is a travel advisory in the place you’re flying to +"I may need some help on my arrival, is there any travel advisory over there?",393,You need to see if there is a travel advisory in the place you’re flying to +when i reach my distination are there any travel advisory there,394,You need to see if there is a travel advisory in the place you’re flying to +Where can I find help from a travel advisor for my destiny?,395,You need to see if there is a travel advisory in the place you’re flying to +"I need information about that, please.",396,You need to see if there is a travel advisory in the place you’re flying to +can you please tell me if there is a travel advisory in the place i am flying to?,397,You need to see if there is a travel advisory in the place you’re flying to +how can I get my frequent flyer number,399,You need your frequent flier number +"I need a frequent flier number, can you help me?",400,You need your frequent flier number +I can't find it in my documents,401,You need your frequent flier number +have any benefit for the frequent traveler,403,You need your frequent flier number +What's my member number for frequent flier miles?,404,You need your frequent flier number +Can I get my frequent flier number?,405,You need your frequent flier number +I need some requirement to get it,406,You need your frequent flier number +What type of ID do you need to tell me my frequent flier number?,407,You need your frequent flier number +Can you give my frequent flier number?,408,You need your frequent flier number +Could you tell me the number of the plane that often flies,409,You need your frequent flier number +What if I don't get my frequent flyer number?,411,You need your frequent flier number +Is it always the same number?,413,You need your frequent flier number +May I have my frequent flier number?,414,You need your frequent flier number +How i know what's my frequent flier number through the website?,415,You need your frequent flier number +could you please give me my travel number?,416,You need your frequent flier number +hi could you please tell me again the information that i did not understand,417,You need your frequent flier number +I am a frequent traveler could indicate my number,418,You need your frequent flier number +May I have my frequent flier number?,419,You need your frequent flier number +My frequent fier number is the same?,421,You need your frequent flier number +is there any body can help me to reach to my position on the plane,422,You need your frequent flier number +Where can I find my frequent flier number?,423,You need your frequent flier number +I need to change my travel number,425,You need your frequent flier number +Can you help me get a new flight?,427,You need your frequent flier number +I needed the pilot number,428,You need your frequent flier number +Where can I request my frequent flyer number?,429,You need your frequent flier number +Can you help me to get my frequent flier number.,431,You need your frequent flier number +Where can I check the frequent flyer number?,434,You need your frequent flier number +it's just that I would like to know,435,You need your frequent flier number +Where do I get this number?,436,You need your frequent flier number +Can I get my frequent flier number?,437,You need your frequent flier number +can you please give me my frequent flier number ?,438,You need your frequent flier number +May I have that information again?,439,You want a customer service agent to repeat what they just said +I did not understand what I was told by the customer service can I repeat it?,440,You want a customer service agent to repeat what they just said +Would you please repeat that?,441,You want a customer service agent to repeat what they just said +"I have difficulty understanding your language, please repeat slowly.",442,You want a customer service agent to repeat what they just said +I could not hear you well. Can you repeat?,443,You want a customer service agent to repeat what they just said +Could you repeat please?,444,You want a customer service agent to repeat what they just said +please repeat what I just said,445,You want a customer service agent to repeat what they just said +Could you repeat that?,446,You want a customer service agent to repeat what they just said +Can you repeat please?,447,You want a customer service agent to repeat what they just said +hi could you please tell me again the information that i did not understand,449,You want a customer service agent to repeat what they just said +Can you repeat your last words?,451,You want a customer service agent to repeat what they just said +"I am sorry, but I did not catch you. Please repeat what you just said.",453,You want a customer service agent to repeat what they just said +could you tell me otherwise I do not understand,454,You want a customer service agent to repeat what they just said +"Sorry I have not heard what you said, can you please tell it again?",455,You want a customer service agent to repeat what they just said +hi could you please tell me again the information that i did not understand,456,You want a customer service agent to repeat what they just said +Can you repeat that again?,457,You want a customer service agent to repeat what they just said +I didn't hear you - please repeat!,458,You want a customer service agent to repeat what they just said +how can you help me if i change my flight?,459,You want a customer service agent to repeat what they just said +"I am sorry, I didn't hear you well, could you say it again?",461,You want a customer service agent to repeat what they just said +can he repeat what he said please ?,463,You want a customer service agent to repeat what they just said +please repeat what we talked about,464,You want a customer service agent to repeat what they just said +Can you help me get a new flight?,465,You want a customer service agent to repeat what they just said +Repeat what I said please,467,You want a customer service agent to repeat what they just said +Could you repeat what you just said?,468,You want a customer service agent to repeat what they just said +"I did not understand you, please indicate me again",469,You want a customer service agent to repeat what they just said +"i can't hear you, can you please repeat that?",472,You want a customer service agent to repeat what they just said +"Sorry, I did not understand what you have just said.",473,You want a customer service agent to repeat what they just said +"do not listen to what he said, could you repeat what you just said?",474,You want a customer service agent to repeat what they just said +you could repeat the information you just provided?,476,You want a customer service agent to repeat what they just said +I did not hear what you said. Could you say it again?,477,You want a customer service agent to repeat what they just said +how do I get a refund,478,You want a refund +If I can not travel on the scheduled date you can opt for the refund of my money?,479,You want a refund +When and how do I get a refund?,480,You want a refund +How can i get my money back,481,You want a refund +What is the situation in which I can recover my money?,483,You want a refund +How can I request a refund?,484,You want a refund +Could you please give me a refund?,486,You want a refund +Que proceso aplica para solicitar reembolso?,488,You want a refund +hi could you please tell me again the information that i did not understand,489,You want a refund +Where is the refund department,490,You want a refund +"I did not like your deal, I want a refund.",493,You want a refund +hi could you please tell me again the information that i did not understand,494,You want a refund +they could give me back the money because I'm not going to travel,495,You want a refund +my package is lost i want a refund,496,You want a refund +i want to pay back how can you that? what will happened next step?,498,You want a refund +I demand reimbursement,501,You want a refund +Can you help me get a new flight?,503,You want a refund +Can I recover my money,504,You want a refund +Can you give me a refund? I buy that flight by a mistake.,505,You want a refund +"Why is this product not working, I need a refund.",506,You want a refund +i would like to get refunded,508,You want a refund +I would like a refund.,509,You want a refund +"There is a refund that I am supposed to collect, is this the right place to ask for it?",510,You want a refund +Where do I request a refund?,511,You want a refund +It is not fair to pay for good attention and they did not give me anything,512,You want a refund +I had issues and I want to a refund,513,You want a refund +Do I need ticket for refund?,514,You want a refund +The service is low standard can I have part of my money back,515,You want a refund +i really need a refund,516,You want a refund +Is it possible for you to help me to add a frequent flyer number to a flight I already booked?,518,You want to add a frequent flyer number to a flight you already booked +Is this reservation number correct?,519,You want to add a frequent flyer number to a flight you already booked +Can we do this on the phone?,520,You want to add a frequent flyer number to a flight you already booked +Can I get discount to buy more tickets besides mine?,522,You want to add a frequent flyer number to a flight you already booked +Can I add a frequent flyer number for my trip?,523,You want to add a frequent flyer number to a flight you already booked +"I made a mistake while booking a ticket, can you help me?",524,You want to add a frequent flyer number to a flight you already booked +please I need to add a frequent flyer number to the booked flight,525,You want to add a frequent flyer number to a flight you already booked +"You can add in flight, often flying man?",526,You want to add a frequent flyer number to a flight you already booked +I need to add a frequent flyer number to my flight.,527,You want to add a frequent flyer number to a flight you already booked +How is it the procedure,529,You want to add a frequent flyer number to a flight you already booked +"Here is my card, insert my number",531,You want to add a frequent flyer number to a flight you already booked +May I add a frequent flyer number to a flight that I booked?,533,You want to add a frequent flyer number to a flight you already booked +I have some number of available flight,534,You want to add a frequent flyer number to a flight you already booked +"I've already booked a flight, however forgot to add my frequent flyer number. Can you please support me in adding it?",535,You want to add a frequent flyer number to a flight you already booked +hi could you please tell me again the information that i did not understand,536,You want to add a frequent flyer number to a flight you already booked +Help me to add a frequent flyer number?,537,You want to add a frequent flyer number to a flight you already booked +I would like to add a frequent flyer number to my booked flight.,538,You want to add a frequent flyer number to a flight you already booked +ı want to add number how can i ? what will you do?,539,You want to add a frequent flyer number to a flight you already booked +and tell me when you complete it,540,You want to add a frequent flyer number to a flight you already booked +Would I be able to add a frequent flyer number to an already booked flight?,541,You want to add a frequent flyer number to a flight you already booked +Can I add an office number?,542,You want to add a frequent flyer number to a flight you already booked +how can i add a frequent flyer number to my flight ?,543,You want to add a frequent flyer number to a flight you already booked +I want to add a new number for this flight,544,You want to add a frequent flyer number to a flight you already booked +Can you help me get a new flight?,545,You want to add a frequent flyer number to a flight you already booked +I want to add the number of permanent travel to my trip No. 1321,547,You want to add a frequent flyer number to a flight you already booked +where can I add my number of the infamous traveler to the flight that I booked ??,548,You want to add a frequent flyer number to a flight you already booked +"and book, but I want to add the option of frequent traveler",549,You want to add a frequent flyer number to a flight you already booked +how can i add a flight number to my booked flight?,551,You want to add a frequent flyer number to a flight you already booked +I booked a flight but would like to add a frequent flyer number.,552,You want to add a frequent flyer number to a flight you already booked +Do you know someone who can help me to add this frequent flyer number?,553,You want to add a frequent flyer number to a flight you already booked +"I have a reserved flight and I wish that my frequent flyer number is added, is it possible?",554,You want to add a frequent flyer number to a flight you already booked +I would like a seat next to it for another passenger,556,You want to add a frequent flyer number to a flight you already booked +A new frequent flyer number. Is it possible and how much will it leave?,557,You want to add a frequent flyer number to a flight you already booked +Do I have a mandatory travel insurance?,558,You want to add travel insurance to a purchased flight +Is there a possibility to add an insurance to a flight that I have purchased?,559,You want to add travel insurance to a purchased flight +I WOULD LIKE TO ADD A TRAVEL INSURANCE TO FLIGHT,560,You want to add travel insurance to a purchased flight +Do I pay any additional fees for buying after-flight insurance?,561,You want to add travel insurance to a purchased flight +I want to add travel insurance to my purchased flight,562,You want to add travel insurance to a purchased flight +send me insurance costs,563,You want to add travel insurance to a purchased flight +Is it possible to add travel insurance to a purchase flight?,564,You want to add travel insurance to a purchased flight +I'd like to change it.,565,You want to add travel insurance to a purchased flight +es posible agregar un seguro de vuelo?,566,You want to add travel insurance to a purchased flight +Show me your insurances,567,You want to add travel insurance to a purchased flight +"I forgot to add a travel insurance to the flight, how can i do that?",569,You want to add travel insurance to a purchased flight +which services offer the flight to part of the insurance?,570,You want to add travel insurance to a purchased flight +May I add travel insurance to a purchased flight?,571,You want to add travel insurance to a purchased flight +insurance is available for this ticket,572,You want to add travel insurance to a purchased flight +what price does this insurance come out,573,You want to add travel insurance to a purchased flight +hi could you please tell me again the information that i did not understand,574,You want to add travel insurance to a purchased flight +yes i want add travel insurance for hotel,575,You want to add travel insurance to a purchased flight +Help for travel insurance to a purchased flight please?,576,You want to add travel insurance to a purchased flight +I have to my add fly travel insurance? and what happened?,578,You want to add travel insurance to a purchased flight +Which ticket did you buy?,580,You want to add travel insurance to a purchased flight +Hi! What travel insurance do you have available ?,581,You want to add travel insurance to a purchased flight +whats the way if i want to add travel insurance?,583,You want to add travel insurance to a purchased flight +I want to add insurance,584,You want to add travel insurance to a purchased flight +Are taxis available to book right now?,585,You want to add travel insurance to a purchased flight +I really need to take my flight!,587,You want to add travel insurance to a purchased flight +can i add a travel insurance to a purchased flight ?,589,You want to add travel insurance to a purchased flight +May I add travel insurance to a purchased flight,590,You want to add travel insurance to a purchased flight +I want to put insurance to ensure my safety,591,You want to add travel insurance to a purchased flight +before buying or after I can add travel insurance?,592,You want to add travel insurance to a purchased flight +if they work with flight insurance?,593,You want to add travel insurance to a purchased flight +How can i add travel insurance to a purchased flight,595,You want to add travel insurance to a purchased flight +Tell me how I can add travel insurance to my purchased flight,596,You want to add travel insurance to a purchased flight +Where can I get additional travel insurance?,597,You want to add travel insurance to a purchased flight +how do I book a flight,598,You want to book a flight +Do you have flight tickets available?,599,You want to book a flight +Can I to book a flight?,600,You want to book a flight +YOU CAN MAKE ME A BOOKING FOR THIS FLIGHT,601,You want to book a flight +I want to book a trip,602,You want to book a flight +When is the next flight to London?,603,You want to book a flight +Mr. I would like to book a flight for two,604,You want to book a flight +Do I have to pay anything extra for booking?,605,You want to book a flight +How much is this flight,607,You want to book a flight +Are there any flight promotions?,609,You want to book a flight +Could you please help me to book a flight?,610,You want to book a flight +I would like to make a reservation,611,You want to book a flight +immediate availability for a flight?,612,You want to book a flight +hi could you please tell me again the information that i did not understand,613,You want to book a flight +will have ticket availability,614,You want to book a flight +I really need to book another flight! Help?,615,You want to book a flight +how much will it cost,617,You want to book a flight +WHICH AEROLINEAS ARE OPERATIVE FOR THESE ROUTES?,618,You want to book a flight +Which companies are available?,619,You want to book a flight +How can I make a reservation?,620,You want to book a flight +How much time would the tickets have?,621,You want to book a flight +can you tell me about the flight,622,You want to book a flight +hi could you please tell me again the information that i did not understand,623,You want to book a flight +Can you help me get a new flight?,624,You want to book a flight +I want to book a flight please,626,You want to book a flight +can you help me with booking a flight?,627,You want to book a flight +I need to book a flight.,628,You want to book a flight +my wife and I want to get two tickets to miami,629,You want to book a flight +i want to book a flight,631,You want to book a flight +Would you help me to book a flight?,632,You want to book a flight +what procedure to take on arrival,633,You want to book a flight +Want to know how can I book a flight,634,You want to book a flight +I would spend a flight to Miami for this Friday,635,You want to book a flight +can i please book a flight ?,636,You want to book a flight +I want to cancel my flight.,637,You want to cancel your flight +I do not want to travel now.,639,You want to cancel your flight +Can I change the date?,641,You want to cancel your flight +How will I be refunded for a canceled flight?,643,You want to cancel your flight +Can I cancel my reservation?,644,You want to cancel your flight +Help to cancel my flight,645,You want to cancel your flight +Will I get my money back if I cancel the flight?,646,You want to cancel your flight +I want to extend my ticket for another opportunity,650,You want to cancel your flight +did I have an unforeseen event that I need to cancel my flight?...,651,You want to cancel your flight +hi could you please tell me again the information that i did not understand,652,You want to cancel your flight +I will not be able to travel I would like to cancel my flight,653,You want to cancel your flight +I want to cancel my flight.,654,You want to cancel your flight +can i travel in another time please ?,655,You want to cancel your flight +i want to cancel my flight how can i ? what happened my flight?,656,You want to cancel your flight +how can I cancel my flight,657,You want to cancel your flight +I postponed my flight,659,You want to cancel your flight +would not be convenient,660,You want to cancel your flight +hi could you please tell me again the information that i did not understand,661,You want to cancel your flight +Can you help me get a new flight?,662,You want to cancel your flight +I am feeling sick I want to cancel my flight.,664,You want to cancel your flight +If i cancel i get a refund?,665,You want to cancel your flight +Where can I go to do the flight cancellation?,666,You want to cancel your flight +Where can I cancel my ticket?,667,You want to cancel your flight +Is there another trip because I want to cancel my trip,670,You want to cancel your flight +There is an emergency and I must reschedule my flight.,671,You want to cancel your flight +is it available to cancel my flight please,672,You want to cancel your flight +I need assistance to cancel my flight,673,You want to cancel your flight +What is missing for the flight to leave ??,674,You want to cancel your flight +can i please cancel my flight ?,675,You want to cancel your flight +Is my flight on time?,677,You want to check if your flight is on time +where I see the time on the ticket,678,You want to check if your flight is on time +Could you tell me if my flight is on time?,679,You want to check if your flight is on time +What time will the flight arrive at the destination?,680,You want to check if your flight is on time +Is it in time for my flight?,681,You want to check if your flight is on time +"I'm afraid the flight will be late, could you help me check, please?",683,You want to check if your flight is on time +Can I be sure of the date of the trip?,684,You want to check if your flight is on time +Whether the time is my flight?,685,You want to check if your flight is on time +How long does a flight wait before it leaves?,686,You want to check if your flight is on time +Could you tell if my flight was on time?,690,You want to check if your flight is on time +How much time is left for my flight to land?,691,You want to check if your flight is on time +hi could you please tell me again the information that i did not understand,692,You want to check if your flight is on time +I would like to verify my flight,693,You want to check if your flight is on time +Is the flight on time?,694,You want to check if your flight is on time +can you told me how much time rest please ?,695,You want to check if your flight is on time +i want to check what i must? or if i dont?,696,You want to check if your flight is on time +"Tell me please, my flight is on schedule",697,You want to check if your flight is on time +Is it regularly departure at on time?,699,You want to check if your flight is on time +what time is the departure from my flight,700,You want to check if your flight is on time +hi could you please tell me again the information that i did not understand,701,You want to check if your flight is on time +Can you help me get a new flight?,702,You want to check if your flight is on time +On which time should I reach the airport?,704,You want to check if your flight is on time +There is no porblem with my flight right?,705,You want to check if your flight is on time +could you tell me if I'm on time to take my flight ??,706,You want to check if your flight is on time +Is there a delay on my flight?,707,You want to check if your flight is on time +Please when the trip to America,710,You want to check if your flight is on time +Is there any delay on my flight?,711,You want to check if your flight is on time +the flight will take off on time or not,712,You want to check if your flight is on time +Have you received any notification of delay for this flight?,713,You want to check if your flight is on time +I would like to know if that nuemerod and haciento touches me ??,714,You want to check if your flight is on time +can you please tell me if my flight is on time ?,715,You want to check if your flight is on time +are there any delays on the flight,717,You want to check your flight status +Can I check my flight status?,719,You want to check your flight status +"I need to travel comfortably, what services does your airline provide?",720,You want to check your flight status +Do I have a way to verify the status of my flight?,721,You want to check your flight status +What is the state of my flight ?,722,You want to check your flight status +Tell me how can I check the status of a flight?,723,You want to check your flight status +What if the flight status is wrong,724,You want to check your flight status +When will my plane arrive?,726,You want to check your flight status +By which port should I board?,728,You want to check your flight status +May I know my flight status?,729,You want to check your flight status +I would like to know the status of the flight,730,You want to check your flight status +hi could you please tell me again the information that i did not understand,732,You want to check your flight status +would be kind enough to tell me how the flight is going,733,You want to check your flight status +Help me to check my flight status?,734,You want to check your flight status +will my flight depart on time?,736,You want to check your flight status +OK I WILL STOP THE COMMUNICATOR PENDING,737,You want to check your flight status +Why did my flight time change?,739,You want to check your flight status +"If not, are there more flights available?",740,You want to check your flight status +hi could you please tell me again the information that i did not understand,742,You want to check your flight status +Can you help me get a new flight?,743,You want to check your flight status +What is the status of the trip,745,You want to check your flight status +I need to know the status of my flight!,746,You want to check your flight status +I want to know the status of my flight,747,You want to check your flight status +How late is my flight?,748,You want to check your flight status +can you check my flight status ?,750,You want to check your flight status +Is my flight delayed?,751,You want to check your flight status +How are customers placed on the standby list?,752,You want to check your flight status +How can i check my flight status,753,You want to check your flight status +"Sobre meu status de voo, como posso ver?",754,You want to check your flight status +can you check my flight status ?,755,You want to check your flight status +Is it possible to replace my ticket with another one?,756,You want to know how much it’s going to cost to change your flight +Is the price a lot higher if I change my flight?,757,You want to know how much it’s going to cost to change your flight +HOW MUCH DOES THIS FLIGHT CHANGE THE FOLLOWING PLEASE,758,You want to know how much it’s going to cost to change your flight +Can I go back if I want my old flight back?,759,You want to know how much it’s going to cost to change your flight +How much does it cost me to change the date of my trip?,760,You want to know how much it’s going to cost to change your flight +could you give me the next dates for flights,761,You want to know how much it’s going to cost to change your flight +I'll have to change your flight if the price is high.,762,You want to know how much it’s going to cost to change your flight +Que puede hacer para cambiar mi vuelo sin costo?,763,You want to know how much it’s going to cost to change your flight +I think it's too expensive,764,You want to know how much it’s going to cost to change your flight +I would like to know what are the fees for flight change?,766,You want to know how much it’s going to cost to change your flight +I need to know How much does it cost to change my flight.,768,You want to know how much it’s going to cost to change your flight +what is the penalty to change the ticket,769,You want to know how much it’s going to cost to change your flight +there are additional charges change the day of flight?,770,You want to know how much it’s going to cost to change your flight +hi could you please tell me again the information that i did not understand,771,You want to know how much it’s going to cost to change your flight +is this so expensive just for change my flight,772,You want to know how much it’s going to cost to change your flight +How much it’s going to cost to change my flight?,773,You want to know how much it’s going to cost to change your flight +how much money if i change my fly? what will happen?,775,You want to know how much it’s going to cost to change your flight +How much time should I wait for that change?,776,You want to know how much it’s going to cost to change your flight +What type of ticket did you buy?,777,You want to know how much it’s going to cost to change your flight +I am considering changing my flight. Would you please tell me how much money I have to pay to get it done.,778,You want to know how much it’s going to cost to change your flight +can i know how cost if i want to change my flight ?,780,You want to know how much it’s going to cost to change your flight +would it cost any change of flight,781,You want to know how much it’s going to cost to change your flight +Are taxis available to book right now?,782,You want to know how much it’s going to cost to change your flight +I need to know how much it's going to cost to change my flight.,784,You want to know how much it’s going to cost to change your flight +what is the cost to change my flight?,786,You want to know how much it’s going to cost to change your flight +I need information how much it's going to cost to change my flight.,787,You want to know how much it’s going to cost to change your flight +How much will the difference between this trip and the other journey,788,You want to know how much it’s going to cost to change your flight +if I make the change of flight will there be an additional cost?,789,You want to know how much it’s going to cost to change your flight +I hope it is not a high price,790,You want to know how much it’s going to cost to change your flight +Tell me How much will it cost to change my flight,792,You want to know how much it’s going to cost to change your flight +Tell me How much will it cost to change my flight,793,You want to know how much it’s going to cost to change your flight +Do I need to pay again for luggage?,794,You want to know how much it’s going to cost to change your flight +Does it have any cost to bring a carry-on bag on the plane?,795,You want to know if it costs money to bring a carry-on bag onto the plane +How much is the cost of hand baggage access?,796,You want to know if it costs money to bring a carry-on bag onto the plane +"If there is a need to help me bring my bag to the plane, how much will it cost?",797,You want to know if it costs money to bring a carry-on bag onto the plane +Do I pay any additional fees per extra kilo?,799,You want to know if it costs money to bring a carry-on bag onto the plane +What is the cost of carrying a carry-on bag with me inside the plane?,800,You want to know if it costs money to bring a carry-on bag onto the plane +"I have a hand luggage with me, should I pay for it?",801,You want to know if it costs money to bring a carry-on bag onto the plane +Do I have to pay some extra money for my hand luggage?,802,You want to know if it costs money to bring a carry-on bag onto the plane +How much baggage one Luggage?,803,You want to know if it costs money to bring a carry-on bag onto the plane +How much do I have to pay for a carry-on bag?,804,You want to know if it costs money to bring a carry-on bag onto the plane +hi could you please tell me again the information that i did not understand,806,You want to know if it costs money to bring a carry-on bag onto the plane +Why I can't take my bag for free?,808,You want to know if it costs money to bring a carry-on bag onto the plane +May I know if it costs money to bring a carry-on bag onto the plane?,810,You want to know if it costs money to bring a carry-on bag onto the plane +this would have some cost to carry in the hand,811,You want to know if it costs money to bring a carry-on bag onto the plane +Please tell me it is free to bring this bag with me,812,You want to know if it costs money to bring a carry-on bag onto the plane +hi could you please tell me again the information that i did not understand,813,You want to know if it costs money to bring a carry-on bag onto the plane +Does it costs money to bring a carry-on bag onto the plane?,814,You want to know if it costs money to bring a carry-on bag onto the plane +"I have carry - on bag, does it cost a lot of money to bring it on to the plane.",815,You want to know if it costs money to bring a carry-on bag onto the plane +how much money if i take another baggage? what happened?,816,You want to know if it costs money to bring a carry-on bag onto the plane +Are there any fees for bringing a carry-on bag onto the plane?,818,You want to know if it costs money to bring a carry-on bag onto the plane +how much does the carrying bag cost?,819,You want to know if it costs money to bring a carry-on bag onto the plane +can you help me i want to carry-on bag onto the plane but i dont know cost ?,820,You want to know if it costs money to bring a carry-on bag onto the plane +what is the cost of getting on the plane with my handbag,821,You want to know if it costs money to bring a carry-on bag onto the plane +Can you help me get a new flight?,822,You want to know if it costs money to bring a carry-on bag onto the plane +How much to carry the bag on the plane,824,You want to know if it costs money to bring a carry-on bag onto the plane +How much money does it cost to bring a hand bag to the plane?,825,You want to know if it costs money to bring a carry-on bag onto the plane +What is the cost of having a handbag?,826,You want to know if it costs money to bring a carry-on bag onto the plane +do i have to pay for a carry on bag?,828,You want to know if it costs money to bring a carry-on bag onto the plane +Is my carry-on bag included?,829,You want to know if it costs money to bring a carry-on bag onto the plane +Do you know if there is need to pay something additional to bring a carry-on bag?,830,You want to know if it costs money to bring a carry-on bag onto the plane +How much is the tax for raising a bag to the plane?,831,You want to know if it costs money to bring a carry-on bag onto the plane +I can carry my handbag with me at no additional cost,833,You want to know if it costs money to bring a carry-on bag onto the plane +What additional value is there for my luggage to be taken to the plane?,834,You want to know if it costs money to bring a carry-on bag onto the plane +what is the menu on this flight,835,You want to know what food will be served on the plane +Where can I get an information on a plane menu for my flight?,836,You want to know what food will be served on the plane +I can tell you what drinks you served during the flight?,837,You want to know what food will be served on the plane +what is the menu that will serve on this flight,839,You want to know what food will be served on the plane +What is the meal on the trip?,841,You want to know what food will be served on the plane +well it would be interesting to know,842,You want to know what food will be served on the plane +"I am gluten intolerant, I need to know what type of food do you serve?",843,You want to know what food will be served on the plane +What kind of food you provide during the flight?,844,You want to know what food will be served on the plane +Tell me how the food is in this plane?,845,You want to know what food will be served on the plane +Can I choose different dishes?,847,You want to know what food will be served on the plane +will they give you refreshments on the plane?,849,You want to know what food will be served on the plane +What food will be served on the plane?,850,You want to know what food will be served on the plane +What kind of food is served on the plane?,851,You want to know what food will be served on the plane +I would like to know what they are going to serve on the plane,852,You want to know what food will be served on the plane +hi could you please tell me again the information that i did not understand,853,You want to know what food will be served on the plane +that we will have available to eat in the flight,854,You want to know what food will be served on the plane +what food will be served on the plane?,855,You want to know what food will be served on the plane +In the plane wiill food italian?,857,You want to know what food will be served on the plane +can i have a cub of tea ?,858,You want to know what food will be served on the plane +what to eat during the trip,861,You want to know what food will be served on the plane +Can you help me get a new flight?,863,You want to know what food will be served on the plane +Is food served on board?,864,You want to know what food will be served on the plane +Could you tell me which food to serve today on the flight?,865,You want to know what food will be served on the plane +I want to know what kind of food will serve on the plane.,867,You want to know what food will be served on the plane +what food will be served on the plane?,870,You want to know what food will be served on the plane +and know that they will drink?,871,You want to know what food will be served on the plane +Is there a way to choose the food menu for allergy sufferers?,872,You want to know what food will be served on the plane +Do you have some gluten free food?,873,You want to know what food will be served on the plane +what food will be served on the plane ?,874,You want to know what food will be served on the plane +is there wifi on the flight,875,You want to see if there’s wifi on the flight +What are the features of my flight?,876,You want to see if there’s wifi on the flight +Can I use wifi in this plane?,877,You want to see if there’s wifi on the flight +Would you be so kind to share your password to the wifi?,878,You want to see if there’s wifi on the flight +DOES THE WI-FI HAVE AN ADDITIONAL COST DURING THE FLIGHT OR IS IT INCLUDED?,879,You want to see if there’s wifi on the flight +Is there any Wi-Fi on the trip?,880,You want to see if there’s wifi on the flight +"On the plane, you can use wi-fi?",881,You want to see if there’s wifi on the flight +How fast is the Wifi?,882,You want to see if there’s wifi on the flight +could i give the wifi password?,886,You want to see if there’s wifi on the flight +Does the flight have wifi?,887,You want to see if there’s wifi on the flight +I would like to connect with the wifi of the flight,888,You want to see if there’s wifi on the flight +do you have to pay extra for WiFi?,889,You want to see if there’s wifi on the flight +hi could you please tell me again the information that i did not understand,890,You want to see if there’s wifi on the flight +I would like to connect to the WiFi of the flight,891,You want to see if there’s wifi on the flight +Is there’s wifi on the flight?,892,You want to see if there’s wifi on the flight +do you offer wifi service on the flight ?,894,You want to see if there’s wifi on the flight +Can you give me the access please,895,You want to see if there’s wifi on the flight +Can I connect my cell phone on the flight?,896,You want to see if there’s wifi on the flight +What is a wifi password?,897,You want to see if there’s wifi on the flight +Is the speed of wifi good?,898,You want to see if there’s wifi on the flight +hi could you please tell me again the information that i did not understand,900,You want to see if there’s wifi on the flight +Can you help me get a new flight?,901,You want to see if there’s wifi on the flight +Is there Wi-Fi on the plane,903,You want to see if there’s wifi on the flight +Is there a wifi signal included in the flight?,904,You want to see if there’s wifi on the flight +I want to know if there's wifi on the flight,905,You want to see if there’s wifi on the flight +How much is the additional pay for the Wi-Fi service?,906,You want to see if there’s wifi on the flight +is the flight have a wifi ?,908,You want to see if there’s wifi on the flight +I would like to know if the flight has wifi.,909,You want to see if there’s wifi on the flight +Tell me if there wifi on the flight,910,You want to see if there’s wifi on the flight +can i see if there’s wifi on the flight ?,912,You want to see if there’s wifi on the flight +is it possible to bring my pet on board,913,You want to see if you can bring your pet on the plane +I want to travel with my pet and I would like to know what they require to transport it?,914,You want to see if you can bring your pet on the plane +Should I buy a ticket for the puppy?,915,You want to see if you can bring your pet on the plane +Can I bring my dog on the plane,916,You want to see if you can bring your pet on the plane +Can I take the pet on the plane?,918,You want to see if you can bring your pet on the plane +Is it possible to take my pet on the plane?,919,You want to see if you can bring your pet on the plane +Will the cost to me will be pet?,920,You want to see if you can bring your pet on the plane +"I have a pet, can I bring it?",921,You want to see if you can bring your pet on the plane +Existe tarifa adicional por llevar mi mascota?,923,You want to see if you can bring your pet on the plane +hi could you please tell me again the information that i did not understand,924,You want to see if you can bring your pet on the plane +what is the process to bring pet on plane,925,You want to see if you can bring your pet on the plane +Is it allowed to bring my pet on the plane?,927,You want to see if you can bring your pet on the plane +my pets be comfortable on the flight?,928,You want to see if you can bring your pet on the plane +hi could you please tell me again the information that i did not understand,929,You want to see if you can bring your pet on the plane +pets allowed on the flight,930,You want to see if you can bring your pet on the plane +my cat can travel with me,931,You want to see if you can bring your pet on the plane +i want to bring my pet how can i do that? what will you do?,933,You want to see if you can bring your pet on the plane +I would like to know if I can fly with my pet,936,You want to see if you can bring your pet on the plane +Can you help me get a new flight?,938,You want to see if you can bring your pet on the plane +Can I bring my laptop?,939,You want to see if you can bring your pet on the plane +Is it possible to bring my pet on the plane?,940,You want to see if you can bring your pet on the plane +Do I need to place my pet in a cage while on the plane?,941,You want to see if you can bring your pet on the plane +i would like to bring my pet on the plane,943,You want to see if you can bring your pet on the plane +Can I bring my pet on the plane?,944,You want to see if you can bring your pet on the plane +What is the policy for bringing a pet on th plane?,945,You want to see if you can bring your pet on the plane +What requirements do you require for a pet to board a plane?,946,You want to see if you can bring your pet on the plane +Are there any drawbacks?,947,You want to see if you can bring your pet on the plane +Want to know if I Can bring my pet on the plane,948,You want to see if you can bring your pet on the plane +Must the pet be in the cage?,949,You want to see if you can bring your pet on the plane +My pet is going with mr,950,You want to see if you can bring your pet on the plane +I really need guidance to see if I can take my pet on the plane.,951,You want to see if you can bring your pet on the plane +I would like to sign up for the frequent flyer program,953,You want to sign up for a frequent flyer program +I want too signup for a frequent flyer program.,954,You want to sign up for a frequent flyer program +Can I sign up for flyer program?,955,You want to sign up for a frequent flyer program +WHAT SHOULD I DO TO REGISTER ME IN A PLAN FOR FREQUENT TRAVELER OF THIS AIRPORT,956,You want to sign up for a frequent flyer program +How can i sign up for a frequent flyer program?,957,You want to sign up for a frequent flyer program +Can I sign up to your frequent flier program?,958,You want to sign up for a frequent flyer program +Could you tell me the address where I can sign up for the program?,959,You want to sign up for a frequent flyer program +Do I have to pay to sign up?,960,You want to sign up for a frequent flyer program +What are my privileges in the program?,962,You want to sign up for a frequent flyer program +Do you have funded payment plans?,964,You want to sign up for a frequent flyer program +May I sign up for a frequent flyer program?,965,You want to sign up for a frequent flyer program +how would you be affiliated with frequent travelers,966,You want to sign up for a frequent flyer program +I want to know how much frequent flyer plan goes?,967,You want to sign up for a frequent flyer program +hi could you please tell me again the information that i did not understand,968,You want to sign up for a frequent flyer program +I would like to join the frequent flyer program,969,You want to sign up for a frequent flyer program +Can you assist me to sign up for a frequent flyer program?,970,You want to sign up for a frequent flyer program +how many miles could i travel to get gifts?,972,You want to sign up for a frequent flyer program +WHAT ARE THE RATES OR PACKAGES THAT HANDLE TO OFFER THE SERVICE?,973,You want to sign up for a frequent flyer program +What are the prices of loyalty programs?,974,You want to sign up for a frequent flyer program +I want to sign up for this,975,You want to sign up for a frequent flyer program +Are there any tourist trips in the area?,976,You want to sign up for a frequent flyer program +How did I get to be part of it?,977,You want to sign up for a frequent flyer program +hi could you please tell me again the information that i did not understand,978,You want to sign up for a frequent flyer program +Can you help me get a new flight?,979,You want to sign up for a frequent flyer program +I want to subscribe to a frequent flyer,981,You want to sign up for a frequent flyer program +I want to enroll in a frequent flyer program ??,982,You want to sign up for a frequent flyer program +I want to sign up on a flyer program.,983,You want to sign up for a frequent flyer program +"I travel a lot, I need to join the frequent flyer program",984,You want to sign up for a frequent flyer program +when can i sign up for a frequent flyer program ?,986,You want to sign up for a frequent flyer program +Can I sign up for a frequent flyer program?,987,You want to sign up for a frequent flyer program +How do I transfer my Multiplus points to the loyalty programs of the Partner Hotels? .,988,You want to sign up for a frequent flyer program +Tell me how can I sign for a frequent flyer program,989,You want to sign up for a frequent flyer program +How do I sign up as a frequent flyer?,990,You want to sign up for a frequent flyer program +i want to sign up for a frequent flyer program,991,You want to sign up for a frequent flyer program +i was wondering if my lost luggage has been located,992,You’re checking if the airline has found your lost luggage +Does the airline have any type of insurance in case of misplacing my luggage?,993,You’re checking if the airline has found your lost luggage +How long will I wait for my luggage?,994,You’re checking if the airline has found your lost luggage +Has my luggage been found,995,You’re checking if the airline has found your lost luggage +Have you found my lost luggage?,997,You’re checking if the airline has found your lost luggage +You could find my Luggage?,998,You’re checking if the airline has found your lost luggage +"Al encontrarlo, cuando entregaran mi equipaje?",1001,You’re checking if the airline has found your lost luggage +hi could you please tell me again the information that i did not understand,1002,You’re checking if the airline has found your lost luggage +what is the process to claim lost luggage,1003,You’re checking if the airline has found your lost luggage +Have my my lost luggage been found ?,1005,You’re checking if the airline has found your lost luggage +How long does it take to find my luggage?,1006,You’re checking if the airline has found your lost luggage +hi could you please tell me again the information that i did not understand,1007,You’re checking if the airline has found your lost luggage +How long would it take to retrieve my luggage?,1008,You’re checking if the airline has found your lost luggage +is still missing my luggage,1009,You’re checking if the airline has found your lost luggage +i want to money back please help me because of my luggage can you help me ?,1011,You’re checking if the airline has found your lost luggage +my luggage has been found,1014,You’re checking if the airline has found your lost luggage +Can you help me get a new flight?,1016,You’re checking if the airline has found your lost luggage +I need to know if you find my luggage.,1018,You’re checking if the airline has found your lost luggage +How do I find my lost luggage?,1019,You’re checking if the airline has found your lost luggage +where is my lost luggage ?,1021,You’re checking if the airline has found your lost luggage +Please update me as to the status of my lost bag.,1022,You’re checking if the airline has found your lost luggage +I am checking the status of my lost luggage,1023,You’re checking if the airline has found your lost luggage +"I lost my luggage and I want to know what happens, help",1024,You’re checking if the airline has found your lost luggage +it is important that I count my luggage,1025,You’re checking if the airline has found your lost luggage +Tell me if the airline has found my luggage,1026,You’re checking if the airline has found your lost luggage +"If the airlane does not find my luggage, where I can fill a form for refund?",1027,You’re checking if the airline has found your lost luggage +I can't find my luggage please have anyone of u see it,1028,You’re checking if the airline has found your lost luggage +"I really need my luggage, thank you.",1029,You’re checking if the airline has found your lost luggage +i am going to miss my connecting flight so what can I do,1031,You’re going to miss your connecting flight and want to check on your other options +the airline can make me a reservation for another flight in case of losing my connection for some delay?,1032,You’re going to miss your connecting flight and want to check on your other options +Do I have to pay for the ticket?,1033,You’re going to miss your connecting flight and want to check on your other options +"if i miss my connecting flight, what can i do",1034,You’re going to miss your connecting flight and want to check on your other options +Are there any other trips in transit for my trip?,1036,You’re going to miss your connecting flight and want to check on your other options +"This is the flight I'd miss, change of plans.",1037,You’re going to miss your connecting flight and want to check on your other options +Could you show me other options?,1038,You’re going to miss your connecting flight and want to check on your other options +cuanto tengo que esperar si tomo otro vuelo sin perder mi conexión?,1040,You’re going to miss your connecting flight and want to check on your other options +hi could you please tell me again the information that i did not understand,1041,You’re going to miss your connecting flight and want to check on your other options +Is there any other connecting flight,1042,You’re going to miss your connecting flight and want to check on your other options +What are my other options?,1044,You’re going to miss your connecting flight and want to check on your other options +do you have to pay extra for losing a flight connection?,1045,You’re going to miss your connecting flight and want to check on your other options +hi could you please tell me again the information that i did not understand,1046,You’re going to miss your connecting flight and want to check on your other options +I would like to know what other options I have if I lose my flight,1047,You’re going to miss your connecting flight and want to check on your other options +i miss my flight can i know my other options,1048,You’re going to miss your connecting flight and want to check on your other options +Which other alternative connecting flight?,1049,You’re going to miss your connecting flight and want to check on your other options +i missed my flight what are they options? can you help me ?,1050,You’re going to miss your connecting flight and want to check on your other options +which alternative flight should I take,1053,You’re going to miss your connecting flight and want to check on your other options +Can you help me get a new flight?,1055,You’re going to miss your connecting flight and want to check on your other options +Is there another option? Because I'm going to miss my connecting flight,1057,You’re going to miss your connecting flight and want to check on your other options +Can I get a refund since I missed my flight?,1058,You’re going to miss your connecting flight and want to check on your other options +"iam going to miss my connecting flight, what can i do ?",1060,You’re going to miss your connecting flight and want to check on your other options +"How can I change my connecting flight, arriving late.",1061,You’re going to miss your connecting flight and want to check on your other options +"I am late for my flight, I must reschedule my flight what are the options?",1062,You’re going to miss your connecting flight and want to check on your other options +"I DO NOT BELIEVE I CAN ARRIVE TO MY CONNECTING FLIGHT, WHAT CAN I DO?",1063,You’re going to miss your connecting flight and want to check on your other options +Is there another available if I miss my flight?,1064,You’re going to miss your connecting flight and want to check on your other options +Just found out am Going to miss my connecting flight and what are my options,1065,You’re going to miss your connecting flight and want to check on your other options +Can I replace the ticket for the missing flight?,1066,You’re going to miss your connecting flight and want to check on your other options +Please I will like to switch flight,1067,You’re going to miss your connecting flight and want to check on your other options +I need your help to have another flight,1068,You’re going to miss your connecting flight and want to check on your other options +Is the pilot experienced?,1070,You’re worried about the weather and its implications on your flight +The weather worries me. Is the flight safe?,1071,You’re worried about the weather and its implications on your flight +THIS AIRPLANE IS SAFE TO TAKE OFF AND TURN THROUGH THIS STORM,1072,You’re worried about the weather and its implications on your flight +How many stopovers will I have on this flight?,1073,You’re worried about the weather and its implications on your flight +Will the trip be affected by the weather?,1074,You’re worried about the weather and its implications on your flight +I really feel very safe with this airline,1075,You’re worried about the weather and its implications on your flight +What will be the consequences of weather to my flight?,1076,You’re worried about the weather and its implications on your flight +Weather my flight a good one?,1077,You’re worried about the weather and its implications on your flight +la Lluvia retrasaría mi vuelo?,1078,You’re worried about the weather and its implications on your flight +What will be the weather in the hours to come?,1081,You’re worried about the weather and its implications on your flight +What about the weather and its implications on the flight?,1083,You’re worried about the weather and its implications on your flight +it is completely safe to travel with this weather,1084,You’re worried about the weather and its implications on your flight +can we change the flight schedule to avoid this weather?,1085,You’re worried about the weather and its implications on your flight +hi could you please tell me again the information that i did not understand,1086,You’re worried about the weather and its implications on your flight +can be safe the flight with this weather,1087,You’re worried about the weather and its implications on your flight +Will the weather be worst for the flight?,1088,You’re worried about the weather and its implications on your flight +What happen air ? if i don't fly?,1090,You’re worried about the weather and its implications on your flight +"Ok, can you explain me more?",1091,You’re worried about the weather and its implications on your flight +Where are you flying to?,1092,You’re worried about the weather and its implications on your flight +Would this airline offer hotel accommodations in case of serious delay due to weather conditions?,1093,You’re worried about the weather and its implications on your flight +what can i do if i worried about the weather and its implications on your flight?,1095,You’re worried about the weather and its implications on your flight +does it have any effect on the flight,1096,You’re worried about the weather and its implications on your flight +Are taxis available to book right now?,1097,You’re worried about the weather and its implications on your flight +I'm worried because of the weather I'm near to take a flight,1099,You’re worried about the weather and its implications on your flight +is there any implications on my flight because of the weather ?,1101,You’re worried about the weather and its implications on your flight +Is it possible that the flight can be canceled because of bad weather?,1102,You’re worried about the weather and its implications on your flight +Today's weather is uncertain. Can I change the date of my trip?,1103,You’re worried about the weather and its implications on your flight +"If there is snow, can my flight be canceled for this reason?",1104,You’re worried about the weather and its implications on your flight +if it is safe to travel with the weather as well ??,1105,You’re worried about the weather and its implications on your flight +Tell me if the weather going to affect the flight,1107,You’re worried about the weather and its implications on your flight +Tell me if the weather implicate my flight,1108,You’re worried about the weather and its implications on your flight +Is the turbulence from storm cells really dangerous?,1109,You’re worried about the weather and its implications on your flight +I lost my bag on a plane. Can you help me?,1111,Your bag was lost +Lost two suitcases with things,1112,Your bag was lost +I lost my bag I could get another because I can not find it,1114,Your bag was lost +Where is lost and found?,1115,Your bag was lost +I lost my bag. Can you help me?,1116,Your bag was lost +where could you go for information,1117,Your bag was lost +"My bag is missing, can you check where it is?",1118,Your bag was lost +Do you have a department for lost items?,1119,Your bag was lost +"Could you help, my bag is lost",1120,Your bag was lost +Where do lost objects go?,1122,Your bag was lost +How do I not get my bag?,1124,Your bag was lost +What should I do to find my lost bag?,1125,Your bag was lost +"My bag was lost , how do you could help me?",1126,Your bag was lost +i think i lost my package,1127,Your bag was lost +hi could you please tell me again the information that i did not understand,1128,Your bag was lost +I think I lost my bag,1129,Your bag was lost +How may I find my lost bag?,1130,Your bag was lost +it is black and have a white line in one side,1133,Your bag was lost +How long will it take to get my bag back?,1134,Your bag was lost +I need you to find me my bag,1136,Your bag was lost +Can you help me get a new flight?,1138,Your bag was lost +Can you help me I lost my bag,1139,Your bag was lost +who can inform me of my lost bag on the flight,1140,Your bag was lost +who is in charge must be responsible,1141,Your bag was lost +I really need help my bag was lost.,1142,Your bag was lost +Could you help me locate my bag?,1145,Your bag was lost +They are supposed to have to be careful where the luggage is supposed to be safe,1146,Your bag was lost +Who do I look for information about lost luggage?,1147,Your bag was lost +Are you responsible for my lost yewelry?,1148,Your bag was lost +Did you organized something in place canceled flight?,1150,Your flight was cancelled and you need to get on another one +"I go with children, I will have a room in a hotel",1151,Your flight was cancelled and you need to get on another one +Could you help me to get a new flight?,1152,Your flight was cancelled and you need to get on another one +Are there any other flights on a different airline?,1153,Your flight was cancelled and you need to get on another one +I really need to book another flight!,1154,Your flight was cancelled and you need to get on another one +Which flight companies do I have for my next flight?,1156,Your flight was cancelled and you need to get on another one +Is it possible to fly with another flight?,1157,Your flight was cancelled and you need to get on another one +"My flight was canceled, when will be the next?",1158,Your flight was cancelled and you need to get on another one +Can I request a refund of my money at least?,1159,Your flight was cancelled and you need to get on another one +there is another available flight or some different connection,1163,Your flight was cancelled and you need to get on another one +I need a flight canceled mine,1164,Your flight was cancelled and you need to get on another one +hi could you please tell me again the information that i did not understand,1165,Your flight was cancelled and you need to get on another one +I could check any available flights because they canceled my flight,1166,Your flight was cancelled and you need to get on another one +I need to get to another flight,1167,Your flight was cancelled and you need to get on another one +what time is the next flight ?,1168,Your flight was cancelled and you need to get on another one +i want to take new flight how can i do? what happened before my flight?,1169,Your flight was cancelled and you need to get on another one +my flight was canceled and I need to get on another flight,1170,Your flight was cancelled and you need to get on another one +what about ticket fee?,1172,Your flight was cancelled and you need to get on another one +I need you to solve this little problem,1173,Your flight was cancelled and you need to get on another one +hi could you please tell me again the information that i did not understand,1174,Your flight was cancelled and you need to get on another one +Can you help me get a new flight?,1175,Your flight was cancelled and you need to get on another one +What other flight are available?,1177,Your flight was cancelled and you need to get on another one +Can i buy another ticket for the next flight?,1178,Your flight was cancelled and you need to get on another one +Would you help me get a new flight?,1179,Your flight was cancelled and you need to get on another one +I can fly on another flight in the near future?,1180,Your flight was cancelled and you need to get on another one +Is there another trip?,1183,Your flight was cancelled and you need to get on another one +Get me the cheapest flight possible instead.,1184,Your flight was cancelled and you need to get on another one +i want to get another flight because my flight was cancelled,1185,Your flight was cancelled and you need to get on another one +Can I book another flight for today?,1186,Your flight was cancelled and you need to get on another one +Is there another flight available?,1187,Your flight was cancelled and you need to get on another one +my flight was cancelled can i get another one ?,1188,Your flight was cancelled and you need to get on another one +Your service is so mess. I would never suggest your airlines to anyone.,0,You are threatening to never to use this airline again +You are so bad that Ill never use your airline and Ill call the media for everyone to see and then sue you.,1,You are threatening to never to use this airline again +YOUR DELAY IS IMPERDABLE DO NOT RETURN TO TRAVEL THIS COMPANY,2,You are threatening to never to use this airline again +I'll get in court if I lose my flight connection.,3,You are threatening to never to use this airline again +I will not book these airline again,4,You are threatening to never to use this airline again +should improve their customer service,5,You are threatening to never to use this airline again +Never again with you!,6,You are threatening to never to use this airline again +Give me a complaints book!,7,You are threatening to never to use this airline again +"no recomendare esta aerolinea, porque no tiene servicios?",8,You are threatening to never to use this airline again +I hope this never happens again,9,You are threatening to never to use this airline again +Do you recommend another airline more responsible?,11,You are threatening to never to use this airline again +Being like that makes me think about not using this airline again.,13,You are threatening to never to use this airline again +I will never travel with you again,14,You are threatening to never to use this airline again +"I do not want to travel with this airline, what other options are there?",15,You are threatening to never to use this airline again +hi could you please tell me again the information that i did not understand,16,You are threatening to never to use this airline again +we need find a solution for both,17,You are threatening to never to use this airline again +To who do I talk to- I'd never to use this airline again!,18,You are threatening to never to use this airline again +"i dont what to fly this airfly, what happened? i didn't like.",20,You are threatening to never to use this airline again +can I talk to your supervisor?,21,You are threatening to never to use this airline again +Is it about safety of our flights?,22,You are threatening to never to use this airline again +This is not acceptable! Do not count me among your clients anymore!,23,You are threatening to never to use this airline again +I do not want to try this again !,25,You are threatening to never to use this airline again +I will never fly with you,26,You are threatening to never to use this airline again +Are taxis available to book right now?,27,You are threatening to never to use this airline again +I will never take a flight with this airline the service is bad,29,You are threatening to never to use this airline again +i will never book a flight in this airline,31,You are threatening to never to use this airline again +I will not use this airline again. Be sure!,32,You are threatening to never to use this airline again +I did nothing to be threatened not to travel again,33,You are threatening to never to use this airline again +"if you do not help me solve my problem, I stopped flying with you",34,You are threatening to never to use this airline again +too much waiting for the flight to go,35,You are threatening to never to use this airline again +For your information I will never use this airline again,37,You are threatening to never to use this airline again +Know now that I will never use this airline again,38,You are threatening to never to use this airline again +Why do you let overweight peaple to book only one seat?,39,You are threatening to never to use this airline again +I booked my flight on the wrong day. Can you help me to change it?,40,You booked a flight for the wrong day and need to change it +they gave me the wrong information,41,You booked a flight for the wrong day and need to change it +How can I do to change the date of my flight since I booked it with a wrong date?,42,You booked a flight for the wrong day and need to change it +Do you have any flights on this particular date and time?,43,You booked a flight for the wrong day and need to change it +Is this date available for travel?,44,You booked a flight for the wrong day and need to change it +I need to change a flight date because it has another date.,46,You booked a flight for the wrong day and need to change it +The time of the trip is not suitable for me. Can I change it?,47,You booked a flight for the wrong day and need to change it +Help to change flight,48,You booked a flight for the wrong day and need to change it +Is there an additional charge for changing the flight?,49,You booked a flight for the wrong day and need to change it +could i advance my flight,53,You booked a flight for the wrong day and need to change it +"I'm going to change my flight, what do I need?",54,You booked a flight for the wrong day and need to change it +hi could you please tell me again the information that i did not understand,55,You booked a flight for the wrong day and need to change it +I would like to change the day of my flight,56,You booked a flight for the wrong day and need to change it +I need to change the day of the booked flight,57,You booked a flight for the wrong day and need to change it +can you correct my date please ?,58,You booked a flight for the wrong day and need to change it +"how can i change my flight? if i go wrong day, what will happened? and what happened if i go on time?",59,You booked a flight for the wrong day and need to change it +tell me I booked a flight on the wrong day whether it can be fixed,60,You booked a flight for the wrong day and need to change it +is there a additional charge?,62,You booked a flight for the wrong day and need to change it +"I need to change the date of my trip, please",63,You booked a flight for the wrong day and need to change it +hi could you please tell me again the information that i did not understand,64,You booked a flight for the wrong day and need to change it +can i change the date ?,65,You booked a flight for the wrong day and need to change it +Yes I made a mistake now I want to change the schedule Is it available?,67,You booked a flight for the wrong day and need to change it +I need another fligh please,68,You booked a flight for the wrong day and need to change it +"I was wrong to book my flight, how do I change?",69,You booked a flight for the wrong day and need to change it +What do you need to do to correct the date of the trip?,70,You booked a flight for the wrong day and need to change it +I want to change the date of my trip from Saturday to Sunday please,73,You booked a flight for the wrong day and need to change it +"I hope I am not too late to change my ticket reservation, can you help me please?",74,You booked a flight for the wrong day and need to change it +is it available to change the flight day please,75,You booked a flight for the wrong day and need to change it +I need assistance to change the day of my flight please,76,You booked a flight for the wrong day and need to change it +"Thank you so much, have a nice day.",77,You booked a flight for the wrong day and need to change it +can you please change it ?,78,You booked a flight for the wrong day and need to change it +how do I get a partial refund for a very bad flight,80,You had a bad flight and want some money back +I have been placed in the tourist class and I have asked very explicitly the class V.I.P. I demand that the difference of the passage,81,You had a bad flight and want some money back +When will i get money?,82,You had a bad flight and want some money back +I should be compensated for my bad experience on your plane,83,You had a bad flight and want some money back +Could some of my money be recovered as compensation for the disadvantages of the trip?,85,You had a bad flight and want some money back +Is it possible to get my money back?,86,You had a bad flight and want some money back +Give me money or bring me the book of complaints!,87,You had a bad flight and want some money back +"What bad flight, will they give me my money back?",88,You had a bad flight and want some money back +A quien me dirijo para reclamar un reintegro por mal servicio en el vuelo?,90,You had a bad flight and want some money back +hi could you please tell me again the information that i did not understand,91,You had a bad flight and want some money back +where is refund deparment,92,You had a bad flight and want some money back +I want some money back as a compensation.,94,You had a bad flight and want some money back +tell me the reasons to be asking for this extra money?,95,You had a bad flight and want some money back +hi could you please tell me again the information that i did not understand,96,You had a bad flight and want some money back +I think I will contact my lawyer because I do not comply with his services,97,You had a bad flight and want some money back +i don't wanna flight like these i want my money back,98,You had a bad flight and want some money back +I need a compensation for a bad flight,99,You had a bad flight and want some money back +i want to money back please help me? how can you help ?,100,You had a bad flight and want some money back +they must give me a compensation for the bad trip,103,You had a bad flight and want some money back +Can you help me get a new flight?,105,You had a bad flight and want some money back +"A bad flight, please give me some of my money back.",107,You had a bad flight and want some money back +Please improve your service.,108,You had a bad flight and want some money back +your flight doesn't deserve it's cost,110,You had a bad flight and want some money back +I did not like this flight and would like to receive a refund.,111,You had a bad flight and want some money back +Your service was not satisfactory. I did not get what I paid for. So I am asking for a refund.,112,You had a bad flight and want some money back +minimum should make restitution for the inconvenience caused in the flight of this afternoon,113,You had a bad flight and want some money back +they gave me nothing to eat or drink,114,You had a bad flight and want some money back +How uch money can I get?,116,You had a bad flight and want some money back +I think I will try another air line next time,117,You had a bad flight and want some money back +i urgently need a flight as I missed mine,120,You missed a very important flight and need one as soon as possible +I need a ticket as soon as possible.,121,You missed a very important flight and need one as soon as possible +I late to my flight and need next one as soon as possible.,122,You missed a very important flight and need one as soon as possible +"I lost my flight and I have other connections, I could get the next one, please",123,You missed a very important flight and need one as soon as possible +I want to book at the earliest available flight because I missed a very important trip,124,You missed a very important flight and need one as soon as possible +I lost my flight: when is the next flight?,125,You missed a very important flight and need one as soon as possible +"I need the next flight, please",126,You missed a very important flight and need one as soon as possible +Can I request a refund for my missed flight?,127,You missed a very important flight and need one as soon as possible +Is there any other combination to get there early?,129,You missed a very important flight and need one as soon as possible +When does the next flight leave?,131,You missed a very important flight and need one as soon as possible +May I have a flight instead of the very important one that I missed?,132,You missed a very important flight and need one as soon as possible +I had difficulties getting there on time I would like to go on the next flight,133,You missed a very important flight and need one as soon as possible +"I lost my flight, I need another, how much is a last minute ticket?",134,You missed a very important flight and need one as soon as possible +hi could you please tell me again the information that i did not understand,135,You missed a very important flight and need one as soon as possible +could be so sweet to tell me which is the first available flight,136,You missed a very important flight and need one as soon as possible +Can you assist me to sign up for a frequent flyer program?,137,You missed a very important flight and need one as soon as possible +please book me a flight same as one i missed,139,You missed a very important flight and need one as soon as possible +WITH WHOM I HAVE TO DISCUSS TO GET NEW CONNECTIONS?,140,You missed a very important flight and need one as soon as possible +What is the value of the first available flight?,141,You missed a very important flight and need one as soon as possible +when is the nearest flight?,142,You missed a very important flight and need one as soon as possible +How soon will the next one come flight?,143,You missed a very important flight and need one as soon as possible +I want to take the next plane,144,You missed a very important flight and need one as soon as possible +hi could you please tell me again the information that i did not understand,145,You missed a very important flight and need one as soon as possible +Can you help me get a new flight?,146,You missed a very important flight and need one as soon as possible +I need a trip as soon as please,148,You missed a very important flight and need one as soon as possible +I missed an important flight and I need one as soon as possible!,149,You missed a very important flight and need one as soon as possible +Please give me a new flight as soon as possible I missed my flight and it was important.,150,You missed a very important flight and need one as soon as possible +"delay me due to traffic, please transfer my ticket to the next flight",151,You missed a very important flight and need one as soon as possible +put me on the next flight please,153,You missed a very important flight and need one as soon as possible +Please help me find a new flight.,154,You missed a very important flight and need one as soon as possible +Could you tell me the value in that case?,155,You missed a very important flight and need one as soon as possible +Missed my flight and I need a flight as soon as possible,156,You missed a very important flight and need one as soon as possible +I would like a new flight as soon as possible,157,You missed a very important flight and need one as soon as possible +i would like to book flight,158,You missed a very important flight and need one as soon as possible +what do I need to do to change my flight,159,You need to change your flight +I want to exchange my ticket with later booking?,160,You need to change your flight +Can you change my flight for another and what do I must do to make it happen?,161,You need to change your flight +I whant to change my flight. What options do I have?,162,You need to change your flight +If there are - business class please!,163,You need to change your flight +could change the itinerary of this flight even,165,You need to change your flight +THERE IS ALAGNA FLIGHT AVAILABLE AFTER THIS TO THE SAME DESTINY TO CHANGE ME TO THAT,166,You need to change your flight +I need an alternate flight.,167,You need to change your flight +Do I have how many hours to rebook the flight?,168,You need to change your flight +Can you put me on another trip,169,You need to change your flight +Can I change the date of the trip?,170,You need to change your flight +is there any surcharge,171,You need to change your flight +there will be an additional surcharge,172,You need to change your flight +"I forgot my passport, could you change my flight please?",173,You need to change your flight +Is it possible to change my flight?,174,You need to change your flight +Is it ppossible to change my flight?,175,You need to change your flight +"My plans have changed, I need to change the flight",176,You need to change your flight +For this flight have a meal?,177,You need to change your flight +Is it necessary to pay something for the change of flight?,179,You need to change your flight +que tengo que hacer para cambiar mi vuelo?,180,You need to change your flight +What's the cost for this change?,181,You need to change your flight +Wich is the procedure to change a flight with this airline?,184,You need to change your flight +are there any available dates to change my flight?,185,You need to change your flight +I need to change my flight?,187,You need to change your flight +I would like to change my flight.,188,You need to change your flight +I need to reeschedule my flight to another day,189,You need to change your flight +Is there any penalty to change my flight? I would like to change it.,190,You need to change your flight +could you change my flight please,191,You need to change your flight +Is there availability to change my flight?,192,You need to change your flight +hi could you please tell me again the information that i did not understand,193,You need to change your flight +hi could you please tell me again the information that i did not understand,194,You need to change your flight +I would like to make a change in my ticket,195,You need to change your flight +i want change my flight is possible,196,You need to change your flight +Help me to change my flight,197,You need to change your flight +Help me to change my flight?,198,You need to change your flight +my flight is another please i need a change,201,You need to change your flight +What happened if i changed my fly?,202,You need to change your flight +can I change it for the next week?,203,You need to change your flight +Can I convince you not to?,204,You need to change your flight +how long will take to change it,205,You need to change your flight +"Please, I would like to change a flight.",206,You need to change your flight +What other flights are schedule for coming days?,207,You need to change your flight +i really need to book another flight,209,You need to change your flight +how do i change my flight,211,You need to change your flight +How does my flight change?,212,You need to change your flight +Can you help me get a new flight?,214,You need to change your flight +Are taxis available to book right now?,215,You need to change your flight +I need to change the flight please,217,You need to change your flight +"I'm going to change my flight, I'm in for an emergency!",218,You need to change your flight +Can you help me to help my flight?,220,You need to change your flight +Please help me to change my flight,221,You need to change your flight +i would like to change my flight,225,You need to change your flight +What is the best option?,226,You need to change your flight +I have an accident and I will not be able to travel. Is there another trip?,227,You need to change your flight +Can I cancel this flight and ask for another one?,228,You need to change your flight +who can make the change of flight?,229,You need to change your flight +and know if m charged for the change ??,230,You need to change your flight +I do not want to travel now with the weather so I need to change my flight,231,You need to change your flight +Need to change my flight,233,You need to change your flight +Tell me how I can change my flight,234,You need to change your flight +There was an emergency and I needed to change my flight.,235,You need to change your flight +Do I need to pay some additional money if I want to change my flight if the price is he same?,236,You need to change your flight +How much money does it cost to change flight?,237,You need to change your flight +i would like to change my flight,238,You need to change your flight +how do I find out if there is a direct flight,239,You need to check if there are any direct flights to your location +Is there a direct flight to my destination?,240,You need to check if there are any direct flights to your location +"Well , book me a ticket for 5 PM in the business class cabin",241,You need to check if there are any direct flights to your location +could you tell me the flights to this destination,243,You need to check if there are any direct flights to your location +Can I get a flight to my location nonstop?,244,You need to check if there are any direct flights to your location +Is there a direct trip to my place of travel?,245,You need to check if there are any direct flights to your location +the prices are the same,246,You need to check if there are any direct flights to your location +Do you fly directly maybe to my location?,247,You need to check if there are any direct flights to your location +I need to fly directly to Thessaloniki.,248,You need to check if there are any direct flights to your location +Help to check my flight,249,You need to check if there are any direct flights to your location +How long do I have to wait?,251,You need to check if there are any direct flights to your location +can they put any direct flight?,253,You need to check if there are any direct flights to your location +Do you have a direct flight to Cairo?,254,You need to check if there are any direct flights to your location +i'll like to know the flight schedule to Toronto for may 4th,255,You need to check if there are any direct flights to your location +podria indicarme si hay vuelos directos a,256,You need to check if there are any direct flights to your location +hi could you please tell me again the information that i did not understand,257,You need to check if there are any direct flights to your location +I would like to know if there are direct flights,258,You need to check if there are any direct flights to your location +Is there any direct flights to my location,259,You need to check if there are any direct flights to your location +i need know if there are any direct flights for Colombia,261,You need to check if there are any direct flights to your location +in any time it will be,262,You need to check if there are any direct flights to your location +"I need to get home fast, which is the next flight?",263,You need to check if there are any direct flights to your location +I need to know if there is any direct flight,265,You need to check if there are any direct flights to your location +Can you help me get a new flight?,267,You need to check if there are any direct flights to your location +How much is the price of a direct trip to France,268,You need to check if there are any direct flights to your location +can you confirm me if there is any direct flight to florida?,269,You need to check if there are any direct flights to your location +What is first class price?,270,You need to check if there are any direct flights to your location +Can you tell me if there are any direct flights to my location?,271,You need to check if there are any direct flights to your location +I need a direct flight from here to my destination,274,You need to check if there are any direct flights to your location +I appreciate it if there is a direct flight to my destination,275,You need to check if there are any direct flights to your location +Is it possible a direct flight at this time?,276,You need to check if there are any direct flights to your location +Do you have online app where I can get information about flights?,277,You need to check if there are any direct flights to your location +i would like to know if there are any direct flights to my location,278,You need to check if there are any direct flights to your location +I would like to know how heavy my bags can be,279,You need to know the maximum weight for a checked bag +What is the maximum weight of my travel bag?,280,You need to know the maximum weight for a checked bag +"If I fly with a child, what is the maximum luggage weight?",281,You need to know the maximum weight for a checked bag +What is the value of the kilo of extra luggage?,283,You need to know the maximum weight for a checked bag +To what weight luggage allows me to transit it?,284,You need to know the maximum weight for a checked bag +"I have more space in my bag, what is the maximum weight for it?",285,You need to know the maximum weight for a checked bag +What is the weight limit for the suitcases?,286,You need to know the maximum weight for a checked bag +How much Luggage can I take?,287,You need to know the maximum weight for a checked bag +How much weight should I carry in my bag?,288,You need to know the maximum weight for a checked bag +hi could you please tell me again the information that i did not understand,290,You need to know the maximum weight for a checked bag +What is the maximum weight for a checked bag?,294,You need to know the maximum weight for a checked bag +is there any weight restriction in the suitcases,295,You need to know the maximum weight for a checked bag +I hope my bag it not too heavy so as to check in with,296,You need to know the maximum weight for a checked bag +hi could you please tell me again the information that i did not understand,297,You need to know the maximum weight for a checked bag +What is the maximum weight for a checked bag?,298,You need to know the maximum weight for a checked bag +I need information: need maximum weight for my bags.,299,You need to know the maximum weight for a checked bag +how much weight baggage? what can you if i extra?,300,You need to know the maximum weight for a checked bag +and what about hand bags,301,You need to know the maximum weight for a checked bag +I would like to ask about the maximum weight for a checked bag.,302,You need to know the maximum weight for a checked bag +how many total weight?,303,You need to know the maximum weight for a checked bag +Can you help me find out what loads can be carried ؟,304,You need to know the maximum weight for a checked bag +the maximum weight for a suitcase which would be,305,You need to know the maximum weight for a checked bag +Can you help me get a new flight?,306,You need to know the maximum weight for a checked bag +What is the maximum weight for the examination bag,308,You need to know the maximum weight for a checked bag +I want to know the maximum weight of my suitcase?,309,You need to know the maximum weight for a checked bag +"I'm getting too overweight, how much is the maximum allowed",310,You need to know the maximum weight for a checked bag +how much weight can i check?,312,You need to know the maximum weight for a checked bag +How heavy can my bag be?,313,You need to know the maximum weight for a checked bag +Who can assist me to check the maximum weight for a checked bag?,314,You need to know the maximum weight for a checked bag +I want to know which is the maximum weight for a baggage or who can tell me that?,315,You need to know the maximum weight for a checked bag +"¿Quisiste decir ""podría pesarme este equipaje""? I could weigh this baggage?",317,You need to know the maximum weight for a checked bag +In addition to hand luggage I own a larger one. Any weight limits?,318,You need to know the maximum weight for a checked bag +Could you tell me how to get a wheelchair after landing?,319,You need to request a wheelchair when you land +Is that wheelchair available?,320,You need to request a wheelchair when you land +Can I go outside in a wheelchair after landing?,321,You need to request a wheelchair when you land +"I'm a wheelchair user and I'm without a chair, please help me at the landing.",323,You need to request a wheelchair when you land +Will I find a wheelchair waiting for me when I'm landing?,324,You need to request a wheelchair when you land +Is it possible to get a wheelchair?,325,You need to request a wheelchair when you land +to land I need you to please find me a wheelchair,326,You need to request a wheelchair when you land +"Somebody can help me with a wheelchair, stroller",327,You need to request a wheelchair when you land +Would you be kind enough to give me a wheelchair?,328,You need to request a wheelchair when you land +hi could you please tell me again the information that i did not understand,330,You need to request a wheelchair when you land +I will need assistance,332,You need to request a wheelchair when you land +May I request a wheelchair when we land?,334,You need to request a wheelchair when you land +I need a wheelchair when I get off the flight,335,You need to request a wheelchair when you land +Who do you think might be able to help me with supplying a wheelchair?,336,You need to request a wheelchair when you land +hi could you please tell me again the information that i did not understand,337,You need to request a wheelchair when you land +I'd like to have wheelchair service when I land.,338,You need to request a wheelchair when you land +"Where I can get a wheelchar, when I land.",339,You need to request a wheelchair when you land +if you can't what can i do?,340,You need to request a wheelchair when you land +how can i reach to it,341,You need to request a wheelchair when you land +"Could you provide me with a wheelchair after landing, please?",342,You need to request a wheelchair when you land +what the way to get a wheelchair?,344,You need to request a wheelchair when you land +Can you help me get a new flight?,346,You need to request a wheelchair when you land +I needed a wheelchair,348,You need to request a wheelchair when you land +a wheelchair is necessary in what the plane lands,349,You need to request a wheelchair when you land +they have wheelchair service to the landing?,350,You need to request a wheelchair when you land +how do i get a wheelchair?,352,You need to request a wheelchair when you land +Who do I ask about getting a wheelchair?,353,You need to request a wheelchair when you land +Do you know how can I get a wheelchair?,354,You need to request a wheelchair when you land +who informs me about requesting or entering a wheelchair at the time of landing?,355,You need to request a wheelchair when you land +Thank you for your attention,357,You need to request a wheelchair when you land +My young lady. I need your help. A wheelchair,358,You need to request a wheelchair when you land +"I need a travel advisary after the flight, do you know can I find one?",359,You need to see if there is a travel advisory in the place you’re flying to +could you translate that says here,360,You need to see if there is a travel advisory in the place you’re flying to +Is there travel any advisory in that place?,361,You need to see if there is a travel advisory in the place you’re flying to +Is it safe to continue on this journey?,362,You need to see if there is a travel advisory in the place you’re flying to +Are there travel notices in the area?,363,You need to see if there is a travel advisory in the place you’re flying to +Which carriers fly to my destination?,365,You need to see if there is a travel advisory in the place you’re flying to +Do you have a travel advisory in Athens?,366,You need to see if there is a travel advisory in the place you’re flying to +I need a guide upon arrival if they have any left?,367,You need to see if there is a travel advisory in the place you’re flying to +Is there anyone who might know about this?,368,You need to see if there is a travel advisory in the place you’re flying to +how many travel advices can i find around,372,You need to see if there is a travel advisory in the place you’re flying to +notices will be available on my flight to,373,You need to see if there is a travel advisory in the place you’re flying to +hi could you please tell me again the information that i did not understand,374,You need to see if there is a travel advisory in the place you’re flying to +I would like to know if there is any travel notice,375,You need to see if there is a travel advisory in the place you’re flying to +Is there a travel advisory to the country?,376,You need to see if there is a travel advisory in the place you’re flying to +are they in this place please ?,377,You need to see if there is a travel advisory in the place you’re flying to +is there a consultation on travel in the place where I'm flying where you can see,379,You need to see if there is a travel advisory in the place you’re flying to +Are they speak English?,381,You need to see if there is a travel advisory in the place you’re flying to +where I can see the place of flight,382,You need to see if there is a travel advisory in the place you’re flying to +hi could you please tell me again the information that i did not understand,383,You need to see if there is a travel advisory in the place you’re flying to +there is a travel advisory in the place you’re flying to ؟,384,You need to see if there is a travel advisory in the place you’re flying to +Is any travel advisory available for my flight?,386,You need to see if there is a travel advisory in the place you’re flying to +Where is a traver advisory?,387,You need to see if there is a travel advisory in the place you’re flying to +can you find out if you have a travel advisory please?,388,You need to see if there is a travel advisory in the place you’re flying to +How reliable is the information you can give me?,389,You need to see if there is a travel advisory in the place you’re flying to +Are there wars in the place where we go?,392,You need to see if there is a travel advisory in the place you’re flying to +"I will need some travel assistance on my destination, is there any travel advisory agency?",393,You need to see if there is a travel advisory in the place you’re flying to +what about the travel advisory in my distination country,394,You need to see if there is a travel advisory in the place you’re flying to +Is there someone who can help me with travel advisory?,395,You need to see if there is a travel advisory in the place you’re flying to +I would appreciate it if you told me that,396,You need to see if there is a travel advisory in the place you’re flying to +i would like to know if there is a travel advisory in the place i am flying to,397,You need to see if there is a travel advisory in the place you’re flying to +can I get my frequent flyer number,399,You need your frequent flier number +How can I get a frequent flier number from your airline?,400,You need your frequent flier number +I would like to take advantage of the bonuses which have accumulated in my frequent flier number,401,You need your frequent flier number +I can apply my frequent flyer benefits aui,403,You need your frequent flier number +I don't have my frequent flier number what is it?,404,You need your frequent flier number +Can you tell me what is my frequent flier number??,405,You need your frequent flier number +how long will the processing take,406,You need your frequent flier number +"I have lost my frequent flier number, could you please tell me?",407,You need your frequent flier number +How can I find my frequent flier number?,408,You need your frequent flier number +What is the aircraft most often flies?,409,You need your frequent flier number +It has some long-term benefit to have a frequent flyer number.,411,You need your frequent flier number +Can I change my travel number?,413,You need your frequent flier number +Could you please give me my frequent flier number?,414,You need your frequent flier number +"i need my frequent flier numberright now,could you tell me what's?",415,You need your frequent flier number +I am a frequent traveler could indicate my traveler number,416,You need your frequent flier number +hi could you please tell me again the information that i did not understand,417,You need your frequent flier number +I could provide my frequent flyer number,418,You need your frequent flier number +May I have my frequent flier number?,419,You need your frequent flier number +This is my frequent fier number?,421,You need your frequent flier number +how much this plane still till leaving,422,You need your frequent flier number +What else can I do with my frequent flier number?,423,You need your frequent flier number +I can change my travel number,425,You need your frequent flier number +Can you help me get a new flight?,427,You need your frequent flier number +Can I take the pilot number?,428,You need your frequent flier number +would be so kind to provide my frequent flyer number!,429,You need your frequent flier number +I forget my frequent flier number. Can you tell me it?,431,You need your frequent flier number +Is it necessary to know the frequent flyer number?,434,You need your frequent flier number +to be aware of everything,435,You need your frequent flier number +"If I can not find it, is it possible to create a new one?",436,You need your frequent flier number +Do I need to fill a form for my flier number?,437,You need your frequent flier number +i would like to know my frequent flier number,438,You need your frequent flier number +"Sorry, could you say that again?",439,You want a customer service agent to repeat what they just said +can you repeat me operator?,440,You want a customer service agent to repeat what they just said +Could you repeat it more slowly?,441,You want a customer service agent to repeat what they just said +I would like you to explain to me how it works so I do not get lost.,442,You want a customer service agent to repeat what they just said +Can you repeat what you said clearly?,443,You want a customer service agent to repeat what they just said +I didn't hear you well?,444,You want a customer service agent to repeat what they just said +Did you hear what I said? can you repeat it to me please,445,You want a customer service agent to repeat what they just said +"I'm sorry, would you repeat me?",447,You want a customer service agent to repeat what they just said +hi could you please tell me again the information that i did not understand,449,You want a customer service agent to repeat what they just said +"I can't understand you, repeat it, please",451,You want a customer service agent to repeat what they just said +You missed me. Please repeat that again.,453,You want a customer service agent to repeat what they just said +sorry i did not hear you,454,You want a customer service agent to repeat what they just said +What is that you said for the last time?,455,You want a customer service agent to repeat what they just said +hi could you please tell me again the information that i did not understand,456,You want a customer service agent to repeat what they just said +Can you repeat that again?,457,You want a customer service agent to repeat what they just said +What did you say? Can you repeat to me.,458,You want a customer service agent to repeat what they just said +how can you help me if i change my flight? i dont't want to go what happened?,459,You want a customer service agent to repeat what they just said +"Could you rephrase your last sentence, please?",461,You want a customer service agent to repeat what they just said +can you help me in customer service said and make him repeat?,463,You want a customer service agent to repeat what they just said +would be so nice to repeat what I said,464,You want a customer service agent to repeat what they just said +Can you help me get a new flight?,465,You want a customer service agent to repeat what they just said +"Sorry, I did not get it, you can repeat what I said!",468,You want a customer service agent to repeat what they just said +"excuse the English is not my mother tongue, can repeat more slowly",469,You want a customer service agent to repeat what they just said +"sorry, but i don't understand can repeat please?",471,You want a customer service agent to repeat what they just said +"I'm sorry, I didn't hear you.",472,You want a customer service agent to repeat what they just said +Can you repeat that over again please?,473,You want a customer service agent to repeat what they just said +"Mr. service Agent, I did not understand what you indicated, I could repeat it again",474,You want a customer service agent to repeat what they just said +I could not take care of the call or information I made,476,You want a customer service agent to repeat what they just said +So that you fully understand the question. Can repeat?,477,You want a customer service agent to repeat what they just said +what do I need to do to get a refund,478,You want a refund +sincerely I am not satisfied with the treatment received in this airline and I prefer the refund of my ticket,479,You want a refund +How much will I receive as a refund?,480,You want a refund +When will i be refunded,481,You want a refund +Can I recover my money?,483,You want a refund +What should I do to be refunded?,484,You want a refund +I'm not going to use this aircraft!,485,You want a refund +"No ofrecen calidad, y el servicio es pesimo, a quien me dirijo para solicitar se me reembolse mi dinero?",488,You want a refund +hi could you please tell me again the information that i did not understand,489,You want a refund +what is the process for refund,490,You want a refund +I need you to refund me.,492,You want a refund +I do not want to fly I want a refund,493,You want a refund +hi could you please tell me again the information that i did not understandhi could you please tell me again the information that i did not understand,494,You want a refund +the flight was delay so many time i want a refund,496,You want a refund +i want to pay back how can you that? can you do that?,498,You want a refund +there is a refund for this trip,501,You want a refund +Can you help me get a new flight?,503,You want a refund +I want to restore my money now,504,You want a refund +Bad flight I want a refund of my money.,505,You want a refund +How many days til I get my refund?,506,You want a refund +i look forward to a refund,508,You want a refund +My I please get a refund?,509,You want a refund +I want a refund for this ticket.,510,You want a refund +Who do I contact to be reimbursed?,511,You want a refund +Had complications and I want to a refund,513,You want a refund +When will I get a refund?,514,You want a refund +I need a refund as I didn't get the things I need,515,You want a refund +my husband and I really need your help to get the refund before arriving at our destination thanks,516,You want a refund +Could you help me adding a frequent flyer number to my booked flight?,518,You want to add a frequent flyer number to a flight you already booked +Can you verify my frequent flyer number?,519,You want to add a frequent flyer number to a flight you already booked +"In this case, I get a full number of bonuses?",520,You want to add a frequent flyer number to a flight you already booked +What is the final value to include a friend in the flight?,522,You want to add a frequent flyer number to a flight you already booked +Can you add a frequent flyer number for my reserved trip?,523,You want to add a frequent flyer number to a flight you already booked +"I forgot to add a frequent flyer number, could you add it for me?",524,You want to add a frequent flyer number to a flight you already booked +to the flight that I have booked I need to add a frequent flyer number,525,You want to add a frequent flyer number to a flight you already booked +How much will it cost to change the list?,526,You want to add a frequent flyer number to a flight you already booked +Could you add this frequent flyer number to my flight please?,527,You want to add a frequent flyer number to a flight you already booked +I need the information thanks,529,You want to add a frequent flyer number to a flight you already booked +Where can I put my frequent flyer number?,531,You want to add a frequent flyer number to a flight you already booked +May I please add a frequent flyer number to a booked flight?,533,You want to add a frequent flyer number to a flight you already booked +I travel frequently what my travel number would be,534,You want to add a frequent flyer number to a flight you already booked +"I cannot see that my frequent flyer number was printed on my flight ticket, do you think it is OK?",535,You want to add a frequent flyer number to a flight you already booked +hi could you please tell me again the information that i did not understand,536,You want to add a frequent flyer number to a flight you already booked +Help me to add a frequent flyer number?,537,You want to add a frequent flyer number to a flight you already booked +"I already booked my flight, how to add frequent flyer number?",538,You want to add a frequent flyer number to a flight you already booked +ı want to add number how can i ? please help me ?,539,You want to add a frequent flyer number to a flight you already booked +"I have already booked a flight, is it still possible to a frequent flyer number to it?",541,You want to add a frequent flyer number to a flight you already booked +can I make a reservation change?,542,You want to add a frequent flyer number to a flight you already booked +Is there any objection if i add a frequent flyer number to my flight ?,543,You want to add a frequent flyer number to a flight you already booked +I would like to know if a new passenger number can be added for this flight,544,You want to add a frequent flyer number to a flight you already booked +Can you help me get a new flight?,545,You want to add a frequent flyer number to a flight you already booked +I want to add a permanent travel number for my trip,547,You want to add a frequent flyer number to a flight you already booked +"Of course I want to add my frequent flyer number, thank you!",548,You want to add a frequent flyer number to a flight you already booked +"Sorry, skip that I'm a frequent flyer on the flight reservation, please add",549,You want to add a frequent flyer number to a flight you already booked +i want to add a frequetly flyer number to my flight.,551,You want to add a frequent flyer number to a flight you already booked +How do I add a frequent flyer number to my flight?,552,You want to add a frequent flyer number to a flight you already booked +How do I add this numbre to my flight?,553,You want to add a frequent flyer number to a flight you already booked +"I have a flight booked, but I do not know if I need to add the frequent flyer number, help me with that please",554,You want to add a frequent flyer number to a flight you already booked +Have tickets increased in price?,556,You want to add a frequent flyer number to a flight you already booked +"Before you finish, can you give me a new frequent flyer number?",557,You want to add a frequent flyer number to a flight you already booked +How much is the cost for travel insurance?,558,You want to add travel insurance to a purchased flight +Can I add an insurance on a flight that I allready purchased?,559,You want to add travel insurance to a purchased flight +A TRAVEL INSURANCE IS AVAILABLE TO THIS FLIGHT,560,You want to add travel insurance to a purchased flight +What is the best insurance company to recommend?,561,You want to add travel insurance to a purchased flight +Can you help me with insurance on my reserved trips?,562,You want to add travel insurance to a purchased flight +when you could make the insurance payment,563,You want to add travel insurance to a purchased flight +Travel insurance to a purchased flight?,564,You want to add travel insurance to a purchased flight +Insurance me and my wife.,565,You want to add travel insurance to a purchased flight +Afectara mi cupon de viajero por agregar un seguro de viaje?,566,You want to add travel insurance to a purchased flight +What's the coverage of your insurance?,567,You want to add travel insurance to a purchased flight +Hope there will be no problem to add insurance,569,You want to add travel insurance to a purchased flight +I would like to add travel insurance to a purchased flight.,571,You want to add travel insurance to a purchased flight +How can I get insurance to fly with you?,572,You want to add travel insurance to a purchased flight +that covers this insurance,573,You want to add travel insurance to a purchased flight +hi could you please tell me again the information that i did not understand,574,You want to add travel insurance to a purchased flight +yes i want add travel insurance for my package,575,You want to add travel insurance to a purchased flight +Help for travel insurance to a purchased flight please?,576,You want to add travel insurance to a purchased flight +I have to my add fly travel insurance if or rejected?,578,You want to add travel insurance to a purchased flight +"No, I don't want to pay for any travel insurance",579,You want to add travel insurance to a purchased flight +How many tickets did you buy>,580,You want to add travel insurance to a purchased flight +Can I request travel insurance for a flight that I already booked?,581,You want to add travel insurance to a purchased flight +Is there any objection if i add travel insurance to a purchased flight?,583,You want to add travel insurance to a purchased flight +I need flight insurance,584,You want to add travel insurance to a purchased flight +Are taxis available to book right now?,585,You want to add travel insurance to a purchased flight +Without it I can't take my flight.,587,You want to add travel insurance to a purchased flight +is there any chance to add travel insurance to a purchased flight ?,589,You want to add travel insurance to a purchased flight +Is there a possibility to add travel insurance to a purchased flight?,590,You want to add travel insurance to a purchased flight +How much does it cost?,591,You want to add travel insurance to a purchased flight +"I already bought my ticket but I want to add travel insurance, can you add it?",592,You want to add travel insurance to a purchased flight +I only travel with insurance,593,You want to add travel insurance to a purchased flight +Show me how to add travel insurance to a purchased flight,595,You want to add travel insurance to a purchased flight +Want to know I can add travel insurance to my purchased flight,596,You want to add travel insurance to a purchased flight +Can I get only medical insurance for the flight?,597,You want to add travel insurance to a purchased flight +is it possible to book a flight,598,You want to book a flight +Is there a vacant seat?,599,You want to book a flight +Where is book flight?,600,You want to book a flight +CAN I MAKE A RESERVATION ON LINE OR BY TAQUILLA?,601,You want to book a flight +Can you help me with booking a flight?,602,You want to book a flight +Is it possible to book a flight to London?,603,You want to book a flight +Is there a flight on the 28th?,604,You want to book a flight +How long can I book a flight?,605,You want to book a flight +At what time does the plabe leave?,607,You want to book a flight +Which are the available dates for flights to this place?,609,You want to book a flight +I need to book a flight.,610,You want to book a flight +I could book my flight for,611,You want to book a flight +How much does an air ticket cost?,612,You want to book a flight +hi could you please tell me again the information that i did not understand,613,You want to book a flight +I could take my reservation for,614,You want to book a flight +I really need to book another flight! Help?,615,You want to book a flight +what time will it leave ?,617,You want to book a flight +What is the price of the ticket?,618,You want to book a flight +Do you have business class available?,619,You want to book a flight +Where can I make a reservation?,620,You want to book a flight +when does the flight leave,622,You want to book a flight +hi could you please tell me again the information that i did not understand,623,You want to book a flight +Can you help me get a new flight?,624,You want to book a flight +I want to book a trip,626,You want to book a flight +I want to book a flight,627,You want to book a flight +Please book me a flight.,628,You want to book a flight +please book two tickets for Monday to New York,629,You want to book a flight +i would like to book a flight,631,You want to book a flight +"I need you to book my flight, please help me.",632,You want to book a flight +Could you give me an arrival time in case of delay,633,You want to book a flight +Tell me how can I book a flight,634,You want to book a flight +Can I get a flight today?,635,You want to book a flight +i would like to book a flight,636,You want to book a flight +Would it be the problem that I cancel my flight now.,637,You want to cancel your flight +When can I change my flight?,638,You want to cancel your flight +"Please, cancel my flight.",639,You want to cancel your flight +Do you have any charges for booking cancellations?,640,You want to cancel your flight +Is it possible to cancel it?,641,You want to cancel your flight +How to cancel the purchase made by my credit card?,643,You want to cancel your flight +Can I cancel my booking?,644,You want to cancel your flight +"My plans have changed, cancel my flight",645,You want to cancel your flight +Do I have to pay anything extra to cancel my flight?,646,You want to cancel your flight +could you tell me how I cancel my flight,650,You want to cancel your flight +Can I cancel my flight?,651,You want to cancel your flight +hi could you please tell me again the information that i did not understand,652,You want to cancel your flight +would be so kind to cancel my flight,653,You want to cancel your flight +I want to cancel my flight.,654,You want to cancel your flight +please can you help me to cancel this flight ?,655,You want to cancel your flight +what will you say if i don't go?,656,You want to cancel your flight +what you need to do to cancel your flight,657,You want to cancel your flight +hi could you please tell me again the information that i did not understand,661,You want to cancel your flight +Can you help me get a new flight?,662,You want to cancel your flight +I want to cancel my flight for today because of some family issue.,664,You want to cancel your flight +Can i speak with the manager?,665,You want to cancel your flight +if I cancel my flight !!,666,You want to cancel your flight +how much money will I lose when I return the ticket?,667,You want to cancel your flight +My wife will give birth and I will not be able to travel,670,You want to cancel your flight +"Something important came up, can I cancel my flight?",671,You want to cancel your flight +what about canceling my flight,672,You want to cancel your flight +Can you help me to cancel my flight please?,673,You want to cancel your flight +"what are you doing, happy day",674,You want to cancel your flight +i would like to cancel my flight,675,You want to cancel your flight +Is my flight right on schedule?,677,You want to check if your flight is on time +where part of the website checks the flight time,678,You want to check if your flight is on time +I want to get to know if my flight is in the correct time.,679,You want to check if your flight is on time +Will there be any delays?,680,You want to check if your flight is on time +can you check me if I'm on time for my flight?,681,You want to check if your flight is on time +"Please, I need help to check if my flight will be delayed so as not to lose scale.",683,You want to check if your flight is on time +Can you tell me any updates about the date of my trip?,684,You want to check if your flight is on time +"Sorry, the plane is not delayed?",685,You want to check if your flight is on time +Can there be a delay if I request it?,686,You want to check if your flight is on time +will it give me time to take the food before my flight leaves?,690,You want to check if your flight is on time +my flight arrives on time,691,You want to check if your flight is on time +hi could you please tell me again the information that i did not understand,692,You want to check if your flight is on time +could you tell me if my flight is on time,693,You want to check if your flight is on time +Is the flight on time?,694,You want to check if your flight is on time +what time is it now please ?,695,You want to check if your flight is on time +if i don't go on time what happened?,696,You want to check if your flight is on time +do you know if it's okay with my flight,697,You want to check if your flight is on time +sorry for bothered you,699,You want to check if your flight is on time +my flight has no delay,700,You want to check if your flight is on time +hi could you please tell me again the information that i did not understand,701,You want to check if your flight is on time +Can you help me get a new flight?,702,You want to check if your flight is on time +I want to check is my flight on time?,704,You want to check if your flight is on time +My flight is on time?,705,You want to check if your flight is on time +I need to know if my flight is on time.,706,You want to check if your flight is on time +My flight will be available according to schedule?,707,You want to check if your flight is on time +Will the trip to America go out at 9 pm,710,You want to check if your flight is on time +I want to check whether the schedule of my plane is on time or not,711,You want to check if your flight is on time +i wounder if the flight will take off on time,712,You want to check if your flight is on time +How much is left until my flight arrives?,713,You want to check if your flight is on time +How long does the flight last?,714,You want to check if your flight is on time +i would like to know if my flight is on time,715,You want to check if your flight is on time +the flight is it on time,717,You want to check your flight status +What's the departure time?,718,You want to check your flight status +Is my flight status ok?,719,You want to check your flight status +the flight will present some type of delay or scale to reach my final destination?,720,You want to check your flight status +Can I have the information to verify the flight?,721,You want to check your flight status +What is the status of my tripe ?,722,You want to check your flight status +Is it possible to check the status of my flight?,723,You want to check your flight status +Who is informed of this?,724,You want to check your flight status +the delayed flights will be modified the hours for your departure?,728,You want to check your flight status +I want to check my flight status?,729,You want to check your flight status +everything is in order,730,You want to check your flight status +arrival time of my flight?,731,You want to check your flight status +hi could you please tell me again the information that i did not understand,732,You want to check your flight status +the flight is in time,733,You want to check your flight status +Help me to check my flight status?,734,You want to check your flight status +is there any delay on my flight?,736,You want to check your flight status +FOR ANY CHANGE I WILL KEEP NEARBY. THANK YOU,737,You want to check your flight status +Will the flight leave at the scheduled time?,738,You want to check your flight status +what is my flight time,739,You want to check your flight status +How many hours does the flight last?,740,You want to check your flight status +what time is the departure from my flight,741,You want to check your flight status +hi could you please tell me again the information that i did not understand,742,You want to check your flight status +Can you help me get a new flight?,743,You want to check your flight status +What is the flight status please,745,You want to check your flight status +Where can I check the status of my flight ??,746,You want to check your flight status +Check to me the status of my flight please.,747,You want to check your flight status +due to the weather is going to make my flight today or are they suspended?,748,You want to check your flight status +can you help me in my flight status ?,750,You want to check your flight status +Can you tell me the status of my flight?,751,You want to check your flight status +Why is this list always changing?,752,You want to check your flight status +Tell me how I can check my flight status,753,You want to check your flight status +Do I have access to my flight status?,754,You want to check your flight status +would you please help me in my flighr status ?,755,You want to check your flight status +Do you accept credit cards?,756,You want to know how much it’s going to cost to change your flight +How much is my changing of flight changing its price?,757,You want to know how much it’s going to cost to change your flight +CAN I CHANGE FLIGHT AND HOW MUCH DOES IT COST?,758,You want to know how much it’s going to cost to change your flight +Do I pay any additional fees to change the flight?,759,You want to know how much it’s going to cost to change your flight +What is the cost of change for another trip?,760,You want to know how much it’s going to cost to change your flight +How long is the minimum time you can reprogram my flight?,761,You want to know how much it’s going to cost to change your flight +Are there any other flights at an affordable price?,762,You want to know how much it’s going to cost to change your flight +que tarifa se aplica para cambiar mi vuelo?,763,You want to know how much it’s going to cost to change your flight +Is there any other option?,764,You want to know how much it’s going to cost to change your flight +"I really need to change my flight, how much it is going to cost that?",766,You want to know how much it’s going to cost to change your flight +Tell me how much it’s going to cost me to change my flight.,768,You want to know how much it’s going to cost to change your flight +I would like to know how much it would cost to change the ticket,769,You want to know how much it’s going to cost to change your flight +"I want to change my flight, tell me the cost of the ticket?",770,You want to know how much it’s going to cost to change your flight +hi could you please tell me again the information that i did not understand,771,You want to know how much it’s going to cost to change your flight +is possible change my flight for one even more cheap,772,You want to know how much it’s going to cost to change your flight +How much it’s going to cost to change my flight?,773,You want to know how much it’s going to cost to change your flight +how much money if i change my fly? if i accepted ?,775,You want to know how much it’s going to cost to change your flight +Which payments methods are available?,776,You want to know how much it’s going to cost to change your flight +What ticket would your prefer to buy instead?,777,You want to know how much it’s going to cost to change your flight +How much money do I have to pay to change my flight?,778,You want to know how much it’s going to cost to change your flight +please can you help me i want to change my flight but i dont konw how much it’s going to cost ?,780,You want to know how much it’s going to cost to change your flight +Are taxis available to book right now?,782,You want to know how much it’s going to cost to change your flight +How much it's going to cost to change my flight?,784,You want to know how much it’s going to cost to change your flight +how much is it to change my flight ?,786,You want to know how much it’s going to cost to change your flight +"Please, tell me how much it's going to cost to change my flight.",787,You want to know how much it’s going to cost to change your flight +How much do you want me to pay you for this trip,788,You want to know how much it’s going to cost to change your flight +"help, could you tell me if my flight is going to charge me something for that move?",789,You want to know how much it’s going to cost to change your flight +I would like to know if the flight I require is available?,790,You want to know how much it’s going to cost to change your flight +Want to know How much will it cost to change my flight,792,You want to know how much it’s going to cost to change your flight +Want to know How much will it cost to change my flight,793,You want to know how much it’s going to cost to change your flight +Can I get economy class instead for business for same money if I change my flight?,794,You want to know how much it’s going to cost to change your flight +Will I be charged any money for bringing a carry-on bag on the plane?,795,You want to know if it costs money to bring a carry-on bag onto the plane +Do you charge for hand luggage?,796,You want to know if it costs money to bring a carry-on bag onto the plane +Who can I ask about this?,797,You want to know if it costs money to bring a carry-on bag onto the plane +Is it priced differently for each type of product?,799,You want to know if it costs money to bring a carry-on bag onto the plane +What is the cost of carrying a suitcase with me inside the plane?,800,You want to know if it costs money to bring a carry-on bag onto the plane +"Is this carry-on bag already in ticket price, if not, can you tell me what does it cost?",801,You want to know if it costs money to bring a carry-on bag onto the plane +wearing a handbag generates an extra expense?,802,You want to know if it costs money to bring a carry-on bag onto the plane +Does the weight of Luggage for the price?,803,You want to know if it costs money to bring a carry-on bag onto the plane +Should I pay for carrying a carry-on bag?,804,You want to know if it costs money to bring a carry-on bag onto the plane +hi could you please tell me again the information that i did not understand,806,You want to know if it costs money to bring a carry-on bag onto the plane +I thought it was included with my ticket,808,You want to know if it costs money to bring a carry-on bag onto the plane +Does it cost money to bring a carry-on bag onto the plane?,810,You want to know if it costs money to bring a carry-on bag onto the plane +you could have some cost carry this on the flight,811,You want to know if it costs money to bring a carry-on bag onto the plane +"So taking this big bag to the plane is supposed to be free, isn't it?",812,You want to know if it costs money to bring a carry-on bag onto the plane +hi could you please tell me again the information that i did not understand,813,You want to know if it costs money to bring a carry-on bag onto the plane +Does it costs money to bring a carry-on bag onto the plane?,814,You want to know if it costs money to bring a carry-on bag onto the plane +How much cost to bring a carry - on bag?,815,You want to know if it costs money to bring a carry-on bag onto the plane +how much money if i take another baggage? what will you do?,816,You want to know if it costs money to bring a carry-on bag onto the plane +and how much cost on every part,817,You want to know if it costs money to bring a carry-on bag onto the plane +I would like to know about any possible fees for bringing a carry-on bag onto the plane.,818,You want to know if it costs money to bring a carry-on bag onto the plane +Is the cost of the carrying bag too high?,819,You want to know if it costs money to bring a carry-on bag onto the plane +what's the way if i carry-on bag onto the plane and how much it ?,820,You want to know if it costs money to bring a carry-on bag onto the plane +has some additional cost to tackle with my hand bag,821,You want to know if it costs money to bring a carry-on bag onto the plane +Can you help me get a new flight?,822,You want to know if it costs money to bring a carry-on bag onto the plane +How much will it take to carry the bag on the plane,824,You want to know if it costs money to bring a carry-on bag onto the plane +can you inform me if carrying a hand bag has any cost?,825,You want to know if it costs money to bring a carry-on bag onto the plane +"my wife is carrying a handbag, does that have any additional cost?",826,You want to know if it costs money to bring a carry-on bag onto the plane +is the carry on bag free?,828,You want to know if it costs money to bring a carry-on bag onto the plane +Do I have to pay to bring a carry-on on board?,829,You want to know if it costs money to bring a carry-on bag onto the plane +Do I need to pay anything to bring a carry-on bag?,830,You want to know if it costs money to bring a carry-on bag onto the plane +where do you inform me if you have any cost to carry a hand bag on the plane?,831,You want to know if it costs money to bring a carry-on bag onto the plane +thanks for your kindness,833,You want to know if it costs money to bring a carry-on bag onto the plane +"Is there any baggage allowance? If yes, which one?",834,You want to know if it costs money to bring a carry-on bag onto the plane +on this flight what is the type of food being served,835,You want to know what food will be served on the plane +Do you know what is on a menu on my flight?,836,You want to know what food will be served on the plane +Do you have another shot of Bourbon?,837,You want to know what food will be served on the plane +There is variety in the menu they serve on this flight thanks,839,You want to know what food will be served on the plane +What is available to eat?,840,You want to know what food will be served on the plane +What shall we eat in the plane?,841,You want to know what food will be served on the plane +Good if to be prepared,842,You want to know what food will be served on the plane +"I don't eat meat, could you please tell me which food do you serve on the plane?",843,You want to know what food will be served on the plane +What is there to eat on the plane?,844,You want to know what food will be served on the plane +What food is planned in this plane?,845,You want to know what food will be served on the plane +Do I have to pay anything extra if I want other dishes?,847,You want to know what food will be served on the plane +If they give food on the plane do you have to pay?,849,You want to know what food will be served on the plane +What food will you serve on the plane?,850,You want to know what food will be served on the plane +There's one online menu to check?,851,You want to know what food will be served on the plane +is there any special menu in the flight,852,You want to know what food will be served on the plane +hi could you please tell me again the information that i did not understand,853,You want to know what food will be served on the plane +could you tell me to serve,854,You want to know what food will be served on the plane +what food will be served on the plane?,855,You want to know what food will be served on the plane +In the plane wiill food of Japan?,857,You want to know what food will be served on the plane +Are there several options to choose from?,859,You want to know what food will be served on the plane +what is the travel menu,861,You want to know what food will be served on the plane +Can you help me get a new flight?,863,You want to know what food will be served on the plane +Can you tell me what food will be served on the plane?,865,You want to know what food will be served on the plane +Can you tell me what food will serve on the plane?,867,You want to know what food will be served on the plane +"can you tell me which foods we are going to consume in the meal, please",870,You want to know what food will be served on the plane +if it's light food I thank you,871,You want to know what food will be served on the plane +How many meals will I have on my flight?,872,You want to know what food will be served on the plane +can you please tell me what food will be served on the plane ?,874,You want to know what food will be served on the plane +is wifi available on flight,875,You want to see if there’s wifi on the flight +Will I have access to WiFi?,876,You want to see if there’s wifi on the flight +Is there internet connection on the flight?,877,You want to see if there’s wifi on the flight +How fast is your Wi-Fi service?,878,You want to see if there’s wifi on the flight +I NEED TO BE CONNECTED BY WI-FI THIS FLIGHT HAS IT,879,You want to see if there’s wifi on the flight +Is there any Wi-Fi on the plane?,880,You want to see if there’s wifi on the flight +Tell me in the plane there is wi-fi?,881,You want to see if there’s wifi on the flight +Can I download files with this Wifi?,882,You want to see if there’s wifi on the flight +What's the wifi speed?,884,You want to see if there’s wifi on the flight +Did your phone recognize any Wi-Fi network?,886,You want to see if there’s wifi on the flight +I want to know if there’s wifi on the flight,887,You want to see if there’s wifi on the flight +could you tell me if the wifi is available,888,You want to see if there’s wifi on the flight +Does this flight have WiFi?,889,You want to see if there’s wifi on the flight +hi could you please tell me again the information that i did not understand,890,You want to see if there’s wifi on the flight +It would be so nice to tell me if there is Wi-Fi in the flight,891,You want to see if there’s wifi on the flight +Is there’s wifi on the flight?,892,You want to see if there’s wifi on the flight +can i use wifi service on the flight?,894,You want to see if there’s wifi on the flight +THANK YOU. HAPPY AFTERNOON,895,You want to see if there’s wifi on the flight +Do you have free Wi-Fi on your flight?,896,You want to see if there’s wifi on the flight +Do not fall so much the wifi?,898,You want to see if there’s wifi on the flight +the wifi will be available,899,You want to see if there’s wifi on the flight +hi could you please tell me again the information that i did not understand,900,You want to see if there’s wifi on the flight +Can you help me get a new flight?,901,You want to see if there’s wifi on the flight +Is there a Wi-Fi connection,903,You want to see if there’s wifi on the flight +the plane has a wifi signal,904,You want to see if there’s wifi on the flight +Is there wifi on the flight?,905,You want to see if there’s wifi on the flight +"the wifi is not found, does the wifi have the plane?",906,You want to see if there’s wifi on the flight +can i use a wifi on the flight ?,908,You want to see if there’s wifi on the flight +Can you tell me if there is wifi on the flight?,909,You want to see if there’s wifi on the flight +Wan to know if there wifi on the flight,910,You want to see if there’s wifi on the flight +I encounter wifi connection on this flight?,911,You want to see if there’s wifi on the flight +i would like to see if there’s wifi on the flight,912,You want to see if there’s wifi on the flight +are pets allowed on board,913,You want to see if you can bring your pet on the plane +Will my pet be served with water and food during the flight?,914,You want to see if you can bring your pet on the plane +How much do I have to pay to take my dog with me?,915,You want to see if you can bring your pet on the plane +What pets do you allow on the plane,916,You want to see if you can bring your pet on the plane +Is the animal allowed?,918,You want to see if you can bring your pet on the plane +May I take my pet aboard?,919,You want to see if you can bring your pet on the plane +If the plane food for Pets?,920,You want to see if you can bring your pet on the plane +"I would like to bring my pet, can I do it?",921,You want to see if you can bring your pet on the plane +Esta permitido que lleve mi mascota en mis piernas?,923,You want to see if you can bring your pet on the plane +hi could you please tell me again the information that i did not understand,924,You want to see if you can bring your pet on the plane +any special services for pet on plane,925,You want to see if you can bring your pet on the plane +Can I bring my pet on the plane?,927,You want to see if you can bring your pet on the plane +I want to take my pet is there to pay extra?,928,You want to see if you can bring your pet on the plane +hi could you please tell me again the information that i did not understand,929,You want to see if you can bring your pet on the plane +I would travel with my pet is allowed,930,You want to see if you can bring your pet on the plane +my fish can travel with me,931,You want to see if you can bring your pet on the plane +i want to bring my pet how can i do that? if i can bring how much money?,933,You want to see if you can bring your pet on the plane +I can take my pet on the flight,936,You want to see if you can bring your pet on the plane +Can you help me get a new flight?,938,You want to see if you can bring your pet on the plane +Is there a problem to bring my pet on the plane?,940,You want to see if you can bring your pet on the plane +How many pets can I bring with me on the plane?,941,You want to see if you can bring your pet on the plane +is there any chance to bring my pet on the plane ?,943,You want to see if you can bring your pet on the plane +Can my pet travel with me?,944,You want to see if you can bring your pet on the plane +"I have a pet and I was wondering whether I can bring my pet with me on the plane?,",945,You want to see if you can bring your pet on the plane +my dog ​​can go with me on the plane?,946,You want to see if you can bring your pet on the plane +or where you could take my pet?,947,You want to see if you can bring your pet on the plane +Yell me if i Can bring my pet on the plane,948,You want to see if you can bring your pet on the plane +Do I need some vet's form for my pet?,949,You want to see if you can bring your pet on the plane +I would love to have my pet with me on this flight,950,You want to see if you can bring your pet on the plane +my family and I want to take our pet to our destination since it is part of our family,951,You want to see if you can bring your pet on the plane +can I sign up for the frequent flyer program,953,You want to sign up for a frequent flyer program +What are the requirements for frequent flyer program?,954,You want to sign up for a frequent flyer program +Is this frequent flyer program? I want to sign up for it.,955,You want to sign up for a frequent flyer program +YOU MAY REGISTER INTO THE FREQUENT TRAVELER PLAN FOR A TAQUILLA TAQUILLA OR I MUST DO IT ONLINE,956,You want to sign up for a frequent flyer program +Can you help me signing up for a frequent flyer program?,957,You want to sign up for a frequent flyer program +Is it possible to sign up to your frequent flier program?,958,You want to sign up for a frequent flyer program +How to sign up for the program,959,You want to sign up for a frequent flyer program +Can I register other members?,960,You want to sign up for a frequent flyer program +How many miles do i need to get a free flight?,962,You want to sign up for a frequent flyer program +What are the types of trips you make?,964,You want to sign up for a frequent flyer program +Could you please tell me how to sign up for a frequent flyer program?,965,You want to sign up for a frequent flyer program +Could you tell me how to join frequent flyers?,966,You want to sign up for a frequent flyer program +frequent flyer plan requirement?,967,You want to sign up for a frequent flyer program +hi could you please tell me again the information that i did not understand,968,You want to sign up for a frequent flyer program +How could I join the frequent flyer program?,969,You want to sign up for a frequent flyer program +Can you assist me to sign up for a frequent flyer program?,970,You want to sign up for a frequent flyer program +how much discount on tickets after signing up?,972,You want to sign up for a frequent flyer program +I AM ACTIVE TRAVELER AND NEED THE SERVICE,973,You want to sign up for a frequent flyer program +How do I sign up for the loyalty program?,974,You want to sign up for a frequent flyer program +How much does each tour package cost?,976,You want to sign up for a frequent flyer program +I want to belong to the program,977,You want to sign up for a frequent flyer program +hi could you please tell me again the information that i did not understand,978,You want to sign up for a frequent flyer program +Can you help me get a new flight?,979,You want to sign up for a frequent flyer program +I want to subscribe to a frequent flyer please,981,You want to sign up for a frequent flyer program +where do I get information for the registration of a frequent flyer program ??,982,You want to sign up for a frequent flyer program +What I need to sign up on a flyer program?,983,You want to sign up for a frequent flyer program +"I am enrolled in the frequent flyer program, give me my benefits from it",984,You want to sign up for a frequent flyer program +is there a frequent flyer program?,986,You want to sign up for a frequent flyer program +Would you sign me up for a frequent flyer program?,987,You want to sign up for a frequent flyer program +LATAM Fidelity are accumulated .,988,You want to sign up for a frequent flyer program +Want to know how can I sign for a frequent flyer program,989,You want to sign up for a frequent flyer program +"If I want to sign up as a frequent flyer, what do I need to do?",990,You want to sign up for a frequent flyer program +i would like to sign up for a frequent flyer program,991,You want to sign up for a frequent flyer program +have you located my lost luggage yet,992,You’re checking if the airline has found your lost luggage +how will my lost luggage arrive to me?,993,You’re checking if the airline has found your lost luggage +Will the company deliver my luggage to my house?,994,You’re checking if the airline has found your lost luggage +I have not gotten a feedback concerning my lost luggage,995,You’re checking if the airline has found your lost luggage +Have you found my missing bags?,997,You’re checking if the airline has found your lost luggage +Have you found it? My luggage,999,You’re checking if the airline has found your lost luggage +"cuando se extravía un equipaje, que se debe hacer?",1001,You’re checking if the airline has found your lost luggage +hi could you please tell me again the information that i did not understand,1002,You’re checking if the airline has found your lost luggage +what are possibilities of recovering lost luggage.,1003,You’re checking if the airline has found your lost luggage +I need to ask about my lost luggage.,1005,You’re checking if the airline has found your lost luggage +hi could you please tell me again the information that i did not understand,1007,You’re checking if the airline has found your lost luggage +I would like to know if my luggage showed up,1008,You’re checking if the airline has found your lost luggage +did you find my luggage that's nice,1009,You’re checking if the airline has found your lost luggage +i want to money back please help me because of my luggage can you help me ? if you don't help me what can i do?,1011,You’re checking if the airline has found your lost luggage +I need to know about the condition of my luggage,1014,You’re checking if the airline has found your lost luggage +Can you help me get a new flight?,1016,You’re checking if the airline has found your lost luggage +Have you found my luggage?,1017,You’re checking if the airline has found your lost luggage +Please tell me if you find my luggage.,1018,You’re checking if the airline has found your lost luggage +Will you refund me for my lost luggage?,1019,You’re checking if the airline has found your lost luggage +is my lost luggage found ?,1021,You’re checking if the airline has found your lost luggage +Can you please check on my lost luggage claim?,1022,You’re checking if the airline has found your lost luggage +Is there any good news regarding my lost luggage,1023,You’re checking if the airline has found your lost luggage +Have they located my luggage yet?,1024,You’re checking if the airline has found your lost luggage +Want to know if airline has found my luggage,1026,You’re checking if the airline has found your lost luggage +How much time does it take to inform me about finding mu lost luggage?,1027,You’re checking if the airline has found your lost luggage +Please help me find my luggage,1028,You’re checking if the airline has found your lost luggage +I need to have my luggage lost so I can get to my destination with my belongings,1029,You’re checking if the airline has found your lost luggage +what options are available for a missed connection,1031,You’re going to miss your connecting flight and want to check on your other options +in case of losing my connecting flight will they refund me the money of the ticket?,1032,You’re going to miss your connecting flight and want to check on your other options +Is there a flight for the same time?,1033,You’re going to miss your connecting flight and want to check on your other options +What other options do i have if i miss my connecting flight,1034,You’re going to miss your connecting flight and want to check on your other options +What trips are available to make up for my trip?,1036,You’re going to miss your connecting flight and want to check on your other options +Which airline for this flight?,1037,You’re going to miss your connecting flight and want to check on your other options +Existe otra conexión que permita que tome un vuelo diferente?,1040,You’re going to miss your connecting flight and want to check on your other options +hi could you please tell me again the information that i did not understand,1041,You’re going to miss your connecting flight and want to check on your other options +Is there any other options available.,1042,You’re going to miss your connecting flight and want to check on your other options +I need to check on my other options.,1044,You’re going to miss your connecting flight and want to check on your other options +"I lose my connection, I want to know if there is another flight to my destination?",1045,You’re going to miss your connecting flight and want to check on your other options +hi could you please tell me again the information that i did not understand,1046,You’re going to miss your connecting flight and want to check on your other options +I would like to know about other flights available to,1047,You’re going to miss your connecting flight and want to check on your other options +can i now other option for fligh i just miss the connecting flight,1048,You’re going to miss your connecting flight and want to check on your other options +Which other alternative connecting flight?,1049,You’re going to miss your connecting flight and want to check on your other options +i missed my flight what are they options? how can you help me?,1050,You’re going to miss your connecting flight and want to check on your other options +the altenative flight would be,1053,You’re going to miss your connecting flight and want to check on your other options +Can you help me get a new flight?,1055,You’re going to miss your connecting flight and want to check on your other options +I'm going to miss my connecting flight. Is there another option?,1057,You’re going to miss your connecting flight and want to check on your other options +How much is the next flight?,1058,You’re going to miss your connecting flight and want to check on your other options +"iam going to miss my connecting flight, can you help me ?",1060,You’re going to miss your connecting flight and want to check on your other options +"My connection will leave before I arrive, can you provide me please with other options?",1061,You’re going to miss your connecting flight and want to check on your other options +"I missed my flight, please tell me the next possible flights.",1062,You’re going to miss your connecting flight and want to check on your other options +"help, I lost my connection flight and I do not know what to do?",1063,You’re going to miss your connecting flight and want to check on your other options +I appreciate if you look for another option,1064,You’re going to miss your connecting flight and want to check on your other options +what are my options after missing my connecting flight,1065,You’re going to miss your connecting flight and want to check on your other options +Can I travel with the same airline's flight for the same money if I miss my connecting flight?,1066,You’re going to miss your connecting flight and want to check on your other options +Am not sure I can meet up please arrange another flight schedule for me,1067,You’re going to miss your connecting flight and want to check on your other options +my family and I need a taxi to pick us up at the airport when we arrive,1068,You’re going to miss your connecting flight and want to check on your other options +Can I get my ticket replaced with later booking?,1070,You’re worried about the weather and its implications on your flight +Im worried about the weather. Would you go on a plane on my place?,1071,You’re worried about the weather and its implications on your flight +I AM CONCERNED THAT THIS STORM ARRECE WHY WE SHOULD NOT DO THEM TO IMPROVE THE CONDITIONS,1072,You’re worried about the weather and its implications on your flight +Is it possible that this flight is delayed and I lose my connection?,1073,You’re worried about the weather and its implications on your flight +Does the weather affect the date of the trip?,1074,You’re worried about the weather and its implications on your flight +although I may feel safer on the ground,1075,You’re worried about the weather and its implications on your flight +Will my flight have any problem due to weather?,1076,You’re worried about the weather and its implications on your flight +Is there no rain in this town?,1077,You’re worried about the weather and its implications on your flight +Se demora el vuelo por afectación del clima?,1078,You’re worried about the weather and its implications on your flight +Is there any other problem?,1079,You’re worried about the weather and its implications on your flight +I am really scare due to the bad time!,1081,You’re worried about the weather and its implications on your flight +Do you expect that the weather may affect our flight?,1083,You’re worried about the weather and its implications on your flight +could you tell me if the weather affected the flight,1084,You’re worried about the weather and its implications on your flight +"I do not want to travel in this weather, we can change for tomorrow?",1085,You’re worried about the weather and its implications on your flight +hi could you please tell me again the information that i did not understand,1086,You’re worried about the weather and its implications on your flight +how bad is flight with this weather,1087,You’re worried about the weather and its implications on your flight +Will the weather be worst for the flight?,1088,You’re worried about the weather and its implications on your flight +What happened air fly?,1090,You’re worried about the weather and its implications on your flight +"Ok, change the flight for the next week",1091,You’re worried about the weather and its implications on your flight +What is your current location?,1092,You’re worried about the weather and its implications on your flight +What is the weather forecast for tomorrow flight?,1093,You’re worried about the weather and its implications on your flight +can the weather implications on a flight ?,1095,You’re worried about the weather and its implications on your flight +the climate influences the flight,1096,You’re worried about the weather and its implications on your flight +Are taxis available to book right now?,1097,You’re worried about the weather and its implications on your flight +I really need to know how is the weather to take my flight,1099,You’re worried about the weather and its implications on your flight +will the weather affect my flight ?,1101,You’re worried about the weather and its implications on your flight +What's the weather like? Can my flight be canceled?,1102,You’re worried about the weather and its implications on your flight +How much temperature does today affect my trip?,1103,You’re worried about the weather and its implications on your flight +Will my flight leave even when there is a storm tomorrow?,1104,You’re worried about the weather and its implications on your flight +I do not think it's convenient to travel like this,1105,You’re worried about the weather and its implications on your flight +Want to know if the weather going to affect the flight,1107,You’re worried about the weather and its implications on your flight +Want to know if the weather implicate my flight,1108,You’re worried about the weather and its implications on your flight +Are airports dangerous for landings and take-offs?,1109,You’re worried about the weather and its implications on your flight +I lost my bag on a plane. What I must do to try to find it?,1111,Your bag was lost +"They had a name tag, please check me for the ticket number",1112,Your bag was lost +I would bring a bag since I can not get mine,1114,Your bag was lost +How can I file a lost baggage claim?,1115,Your bag was lost +My luggage did not arrive. can you help me?,1116,Your bag was lost +will be held responsible for the loss,1117,Your bag was lost +"I am at the luggage claim, still waiting for my bag, I think it is lost.",1118,Your bag was lost +I need to find my lost bag.,1119,Your bag was lost +"I lost somewhere in my bag, help me please!",1120,Your bag was lost +"If they can't find it, what would happen, is there a refund?",1122,Your bag was lost +How long should I wait to find out?,1124,Your bag was lost +"Please, I need help. My bag is lost?",1125,Your bag was lost +"you have total responsability over my luggage,and it was lost.",1126,Your bag was lost +I do not remember where I put my package I could not find it could help me,1127,Your bag was lost +hi could you please tell me again the information that i did not understand,1128,Your bag was lost +I do not remember where my bag could fit,1129,Your bag was lost +How may I find my lost bag?,1130,Your bag was lost +it is contain my money and other documents,1133,Your bag was lost +Why did you lost my bag?,1134,Your bag was lost +my bag is not to be missed,1136,Your bag was lost +Can you help me get a new flight?,1138,Your bag was lost +I lost my bag. Please help me,1139,Your bag was lost +"I lost my bag, who can help me with this?",1140,Your bag was lost +Can you help me to find my bag It's lost.,1142,Your bag was lost +"I need you to help me locate my bag, please",1145,Your bag was lost +please check my luggage my boldsa has to appear,1146,Your bag was lost +I have goods of importance in my suitcase. What should I do?,1147,Your bag was lost +Where can I fill a form for refund?,1148,Your bag was lost +can you tell me where my bag is ?,1149,Your bag was lost +Can you help me? My flight is canceled but I need to travel to designated place as soon as posible.,1150,Your flight was cancelled and you need to get on another one +"please be quick, you need to be on time",1151,Your flight was cancelled and you need to get on another one +I am in need of getting a new flight because my previous one was cancelled,1152,Your flight was cancelled and you need to get on another one +Can I get on a nondirect flight instead?,1153,Your flight was cancelled and you need to get on another one +Is there another flight in another airline?,1154,Your flight was cancelled and you need to get on another one +I need help because I missed one flight and I need to get another one at the same time.,1156,Your flight was cancelled and you need to get on another one +When is the next flight to Moscow?,1157,Your flight was cancelled and you need to get on another one +"Find me a new flight, my plane was cancelled!",1158,Your flight was cancelled and you need to get on another one +"I have to wait for the next flight, is there no other solution?",1159,Your flight was cancelled and you need to get on another one +I could talk to your supervisor,1163,Your flight was cancelled and you need to get on another one +look for an immediate flight please,1164,Your flight was cancelled and you need to get on another one +hi could you please tell me again the information that i did not understand,1165,Your flight was cancelled and you need to get on another one +what flight is there for the following date,1166,Your flight was cancelled and you need to get on another one +I need to get to another flight,1167,Your flight was cancelled and you need to get on another one +what time is the next flght please ?,1168,Your flight was cancelled and you need to get on another one +i want to take new flight how can i do? what happened before my flight? may i take money before flight?,1169,Your flight was cancelled and you need to get on another one +I need to get on another flight my flight was canceled,1170,Your flight was cancelled and you need to get on another one +how about accommodation until next flight?,1172,Your flight was cancelled and you need to get on another one +what flight alternatives do i have,1173,Your flight was cancelled and you need to get on another one +hi could you please tell me again the information that i did not understand,1174,Your flight was cancelled and you need to get on another one +Can you help me get a new flight?,1175,Your flight was cancelled and you need to get on another one +This is bad I wanted to go today but the flight got cancelled.,1177,Your flight was cancelled and you need to get on another one +Are you going to refund my money right?,1178,Your flight was cancelled and you need to get on another one +I really need to book another flight!,1179,Your flight was cancelled and you need to get on another one +How fast can I fly off on another flight?,1180,Your flight was cancelled and you need to get on another one +I want to book a ticket for another trip,1183,Your flight was cancelled and you need to get on another one +Please reschedule my flight with no more than one stops.,1184,Your flight was cancelled and you need to get on another one +my flight was cancelled and i wounder another one,1185,Your flight was cancelled and you need to get on another one +What are my alternatives to solve this?,1186,Your flight was cancelled and you need to get on another one +i need to arrive on time,1187,Your flight was cancelled and you need to get on another one +my flight was cancelled would you please help me to get on another one,1188,Your flight was cancelled and you need to get on another one diff --git a/src/test/data/TooSmall.csv b/src/test/data/TooSmall.csv new file mode 100644 index 0000000..e2e1e1e --- /dev/null +++ b/src/test/data/TooSmall.csv @@ -0,0 +1,6 @@ +ID,Target_1,Text +0,You are threatening to never to use this airline again,Your service is so bad. +1,You are threatening to never to use this airline again,I will never use this airline again. +2,You are threatening to never to use this airline again,"BECAUSE THEY TREAT ME SO EVIL, I WILL NOT USE THIS COMPANY TO STOP FLYING" +3,You are threatening to never to use this airline again,If I have to pay any additional fees I will not fly more for this company. +4,You are threatening to never to use this airline again,"If you do not give me what I'm asking for, I'll book another flight with another airline" \ No newline at end of file diff --git a/src/test/data/__init__.py b/src/test/data/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/test/data/classification.csv b/src/test/data/classification.csv new file mode 100644 index 0000000..b43c61d --- /dev/null +++ b/src/test/data/classification.csv @@ -0,0 +1,24477 @@ +row_index,user_id,text,single_1,single_2,single_3,multi_1,multi_2,multi_3,annotation +0,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +1,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +2,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +3,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +4,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +5,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +6,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +7,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +8,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +9,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +10,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +11,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +12,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +13,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +14,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +15,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +16,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +17,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +18,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +19,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +20,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +21,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +22,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +23,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +24,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +25,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +26,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +27,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +28,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +29,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +30,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +31,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +32,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +33,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +34,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +35,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +36,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +37,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +38,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +39,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +40,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +41,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +42,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +43,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +44,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +45,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +46,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +47,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +48,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +49,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +50,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +51,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +52,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +53,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +54,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +55,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +56,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +57,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +58,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +59,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +60,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +61,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +62,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +63,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +64,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +65,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +66,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +67,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +68,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +69,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +70,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +71,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +72,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +73,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +74,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +75,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +76,13929,"Invoice + +#Z93SE5Q-U3A0JH + +We received payment for your Zeplin subscription. Thank you! +Learn how to update invoice and billing information. For any other +questions, ping us anytime at support@zeplin.io. + +Date Oct 26, 2018 + +Subscribed with engineer@indico.io + +Charged to MasterCard (**** **** ****) + +For service through + +Oct 26, 2019 + +Subscription to Growing Business $312.00 + +Subtotal $312.00 + +Total + +$312.00 + +Paid $312.00 + +Thank you! + +Zeplin, Inc +350 Brannan St., Suite 350 +San Francisco, CA 94107 +United States + +EIN: 35 - 2533442","""tools""","""zeplin-asana-amazon""",,"[""tools""]",,,"[{""label"":""invoice"",""start"":9,""end"":24},{""label"":""vendor"",""start"":436,""end"":447}]" +94,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +95,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +96,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +97,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +98,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +99,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +100,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +101,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +102,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +103,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +104,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +105,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +106,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +107,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +108,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +109,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +110,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +111,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +112,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +113,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +114,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +115,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +116,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +117,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +118,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +119,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +120,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +121,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +122,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +123,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +124,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +125,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +126,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +127,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +128,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +129,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +130,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +131,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +132,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +133,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +134,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +135,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +136,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +137,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +138,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +139,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +140,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +141,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +142,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +143,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +144,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +145,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +146,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +147,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +148,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +149,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +150,13929,"HubSpot, Inc. +2 First Street, + +Boston, MA 02141 Tax +ID: 11-2665791 + +indico data solutions, INC +Bill To: Ship To: + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +186 SOUTH STREET +SUITE 400 +Boston MA 02111 +US + +Item Billing Frequency + +HubSpot Enterprise Monthly +Included Contacts Monthly +Enterprise Contacts - Per 1000 Monthly + +Credit Card Receipt 579266 +Date 06/21/2016 +Portal ID 3927578 +Currency USD + +Start Date End Date Quantity Line Total +06/21/2016 07/20/2016 1 $1,200.00 +06/21/2016 07/20/2016 10 $0.00 +06/21/2016 07/20/2016 5 $25.00 + +Subtotal $1,225.00 +Total Tax $76.56 +Total $1,301.56 + +Please contact your Account Manager for any questions related to your contract. For any other general invoicing inquiries, please send +an email to bills@hubspot.net + +1 / 1","""business""",,,"[""business"", ""organization""]",,,"[{""label"":""vendor"",""start"":0,""end"":13},{""label"":""invoice"",""start"":345,""end"":351}]" +154,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +155,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +156,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +157,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +158,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +159,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +160,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +161,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +162,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +163,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +164,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +165,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +166,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +167,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +168,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +169,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +170,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +171,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +172,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +173,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +174,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +175,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +176,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +177,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +178,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +179,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +180,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +181,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +182,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +183,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +184,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +185,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +186,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +187,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +188,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +189,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +190,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +191,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +192,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +193,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +194,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +195,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +196,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +197,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +198,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +199,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +200,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +201,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +202,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +203,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +204,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +205,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +206,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +207,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +208,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +209,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +210,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +211,13929,"Venture Advisors + +14 North Road +Sudbury, MA 01776 +(781) 273-6074 +ktempo@venture- +advisors.com + +INVOICE + +BILL TO + +Indico +186 South Street +Suite 400 +Boston, MA 02111 + +INVOICE # 3860 +DATE 04/30/2017 + +DUE DATE + +04/30/2017 + +TERMS + +Due on receipt + +DATE ACTIVITY QTY RATE AMOUNT + +04/30/2017 + +Services + +Finance services + +4.75 175.00 831.25 + +Tax I.D. 27-1577081 +ACH payments: + +Citizens Bank +ABA/Trans routing # 288202936 +Bank Acct. # 13126789876 +PLEASE NOTE OUR NEW ADDRESS ABOVE + +BALANCE DUE + +$831.25","""business""",,,"[""business""]",,,"[{""label"":""vendor"",""start"":0,""end"":16},{""label"":""invoice"",""start"":175,""end"":179}]" +216,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +217,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +218,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +219,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +220,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +221,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +222,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +223,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +224,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +225,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +226,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +227,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +228,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +229,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +230,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +231,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +232,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +233,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +234,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +235,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +236,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +237,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +238,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +239,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +240,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +241,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +242,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +243,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +244,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +245,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +246,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +247,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +248,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +249,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +250,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +251,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +252,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +253,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +254,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +255,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +256,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +257,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +258,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +259,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +260,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +261,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +262,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +263,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +264,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +265,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +266,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +267,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +268,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +269,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +270,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +271,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +272,13929,"Invoice + +Sold -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Bill -To + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +Service Usage Address + +Default Directory +186 South Street Suite 400 +Boston MA 02111 +United States + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Order Details Billing Summary +Product: Online Services Charges: 66.00 +Customer PO Number: Discounts: 0.00 +Order Number: b011d605-7137-4dd8-abdd Credits: 0.00 +Billing Period: 03/14/2020 - 04/13/2020 Tax: 4.13 +Payment Terms: Net 30 Total: 70.13 +Due Date: 05/14/2020 + +Payment Instructions + +Please DO NOT PAY. You will be charged the amount due through your selected method of payment. + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +Page 1 of 2 +Invoice + +April 2020 +Invoice Date: 04/14/2020 +Invoice Number: E0600AT +Due Date: 05/14/2020 + +70.13 USD + +Office 365 Business +Service Period Days Qty Monthly Price Charges Discounts Credits SubTotal Tax % Tax Total +04/13/2020 - 05/12/2020 30 8 8.25 66.00 0.00 0.00 66.00 6.25 % 4.13 70.13 +SubTotal 66.00 0.00 0.00 66.00 4.13 70.13 + +Grand Total + +66.00 + +0.00 + +0.00 + +66.00 + +Billing or service question? Call 1-800-865-9408 or visit https://aka.ms/Office365Billing. + +Microsoft Corporation, One Microsoft Way Redmond, WA 98052 United States +US FEIN 91-1144442 + +4.13 + +70.13 + +Page 2 of 2","""tools""","""computers""","""microsoft""","[""tools"", ""technology"", ""computers"", ""office""]","[""technology"", ""microsoft""]","[""office""]","[{""label"":""invoice"",""start"":332,""end"":339},{""label"":""invoice"",""start"":1184,""end"":1193},{""label"":""vendor"",""start"":1020,""end"":1041},{""label"":""vendor"",""start"":1709,""end"":1731}]" +302,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +303,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +304,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +305,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +306,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +307,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +308,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +309,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +310,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +311,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +312,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +313,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +314,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +315,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +316,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +317,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +318,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +319,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +320,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +321,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +322,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +323,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +324,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +325,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +326,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +327,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +328,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +329,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +330,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +331,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +332,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +333,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +334,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +335,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +336,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +337,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +338,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +339,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +340,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +341,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +342,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +343,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +344,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +345,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +346,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +347,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +348,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +349,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +350,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +351,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +352,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +353,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +354,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +355,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +356,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +357,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +358,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +359,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +360,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +361,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +362,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +363,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +364,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +365,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +366,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +367,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +368,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +369,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +370,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +371,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +372,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +373,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +374,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +375,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +376,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +377,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +378,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +379,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +380,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +381,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +382,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +383,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +384,13929,"Account number: + +348723987438 + +Bill to Address: + +129 South Street +Boston , MA , 02111 , US + +Amazon Web Services Invoice + +Email or talk to us about your AWS account or bill, visit aws.amazon.com/contact-us/ + +Invoice Summary + +Invoice Number: 34782384 +Invoice Date: October 3 , 2015 + +TOTAL AMOUNT DUE ON October 3 , 2015 $782.31 + +This invoice is for the billing period September 1 - September 30 , 2015 + +Greetings from Amazon Web Services, we're writing to provide you with an electronic invoice for your use of AWS services. Additional information +regarding your bill, individual service charge details, and your account history are available on the Account Activity Page. + +Summary +AWS Service Charges $782.31 +Charges $29,518.98 +Credits ($28,736.67) +Tax * $0.00 +Total for this invoice $782.31 + +Detail +Amazon Simple Storage Service $0.00 +Charges $137.94 +Credits ($137.94) +Estimated US sales tax to be collected $0.00 +AWS Data Transfer $0.00 +Charges $866.15 +Credits ($866.15) +Estimated US sales tax to be collected $0.00 +Amazon SimpleDB $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +AWS Support (Business) $782.31 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +1 +Charges $2,211.52 +Credits ($1,429.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic MapReduce $0.00 +Charges $566.21 +Credits ($566.21) +Estimated US sales tax to be collected $0.00 +Amazon Elastic Compute Cloud $0.00 +Charges $25,735.92 +Credits ($25,735.92) +Estimated US sales tax to be collected $0.00 +AWS Key Management Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Simple Queue Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 +Amazon Route 53 $0.00 +Charges $1.24 +Credits ($1.24) +Estimated US sales tax to be collected $0.00 +Amazon Simple Notification Service $0.00 +Charges $0.00 +Estimated US sales tax to be collected $0.00 + +* May include estimated US sales tax, VAT, GST and CT. +Amazon Web Services, Inc. foreign registration number is 00004 +AWS, Inc. is a ""Registered Foreign Supplier"" under Japanese Consumption Tax Law and therefore AWS, +Inc. is required to declare and pay consumption tax in respect of this transaction (as a “Digital Service”) +to the Japan Tax Authority. +** This is not a VAT invoice +*** Check the GST statement attached at the end of this Invoice for details +† Usage and recurring charges for this statement period will be charged on your next billing date. The +amount of your actual charges for this statement period may differ from the charges shown on this +page. The charges shown on this page do not include any additional usage charges accrued during this +statement period after the date you are viewing this page. Also, one-time fees and subscription charges +are assessed separately, on the date that they occur. +All charges and prices are in US Dollars +All AWS Services are sold by Amazon Web Services, Inc. + +Service Provider: + +(Not to be used for payment remittance) +Amazon Web Services, Inc. +410 Terry Ave North +Seattle , WA 98109-5210 , US + +2","""cloud""","""zeplin-asana-amazon""",,"[""cloud"", ""technology""]","[""technology""]","[""cloud""]","[{""label"":""vendor"",""start"":92,""end"":111},{""label"":""invoice"",""start"":246,""end"":255}]" +434,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +435,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +436,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +437,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +438,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +439,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +440,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +441,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +442,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +443,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +444,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +445,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +446,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +447,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +448,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +449,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +450,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +451,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +452,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +453,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +454,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +455,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +456,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +457,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +458,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +459,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +460,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +461,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +462,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +463,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +464,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +465,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +466,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +467,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +468,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +469,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +470,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +471,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +472,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +473,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +474,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +475,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +476,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +477,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +478,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +479,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +480,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +481,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +482,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +483,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +484,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +485,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +486,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +487,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +488,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +489,13929,"Asana + +Invoice + +10 Bryant Street +San Francisco, CA 94103 +United States +Email: service@asana.com + +Bill To +indico.io +186 SOUTH STREET +400 +Boston, MA 02111-2833 +United States + +Invoice # 819823 +Billed On Oct 9, 2018 +Terms On -Receipt +Due On Oct 9, 2018 + +PAID + +on Oct 9, 2018 + +$1,125.00 USD + +Date Description Qty Price Subtotal + +Oct 9, 2018 – Oct 9, 2019 Organization Annual 1 $1,125.00 $1,125.00 + +Payments +Oct 9, 2018 $1,125.00 Payment from MasterCard ··· + +Notes + +All amounts in United States Dollars (USD) + +Subtotal $1,125.00 + +Total $1,125.00 + +Paid ($1,125.00) + +Amount Due $0.00 + +Page 1 of 1","""tools""","""zeplin-asana-amazon""",,"[""tools"", ""organization"", ""office""]","[""asana-google""]","[""office""]","[{""label"":""vendor"",""start"":0,""end"":5},{""label"":""invoice"",""start"":183,""end"":189}]" +528,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +529,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +530,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +531,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +532,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +533,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +534,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +535,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +536,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +537,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +538,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +539,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +540,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +541,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +542,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +543,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +544,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +545,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +546,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +547,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +548,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +549,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +550,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +551,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" +552,13929,"Invoice + +Invoice number: 326985 + +Bill to +Indico Data Solutions +186 South Street Suite 400 +Boston, MA 02111 +United States + +Details + +.....Invoice. ... ......number.... .... .....3526648......... . +..Invoice...... .....date .... ..Nov ....30, ...2018 +....Billing......ID. .... 5048 +.....Domain........name.... .... .....indicoio..... + +You will be automatically charged for any amount due. + +Google LLC +1600 Amphitheatre Pkwy +Mountain View, CA 94043 +United States +Federal Tax ID: 77-0493581 + +Google Cloud - GSuite +Total in USD $155.83 +Summary for Nov 1, 2018 - Nov 30, 2018 +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 +Total in USD $155.83 + +Page 1 of 2 +Invoice Invoice number: 3526694835 + +Subscription Description Interval Quantity Amount($) + +G Suite Business Commitment Nov 1 - Nov 30 22 146.66 + +Subtotal in USD $146.66 +State sales tax (6.25%) $9.17 + +Total in USD $155.83 + +Page 2 of 2","""cloud""","""computers""","""google""","[""cloud"", ""technology"", ""computers""]","[""technology"", ""asana-google""]","[""google"", ""cloud""]","[{""label"":""invoice"",""start"":25,""end"":32},{""label"":""vendor"",""start"":249,""end"":259}]" diff --git a/src/test/data/datasets.py b/src/test/data/datasets.py new file mode 100644 index 0000000..4e12809 --- /dev/null +++ b/src/test/data/datasets.py @@ -0,0 +1,128 @@ +import os +import pytest +import time +from pathlib import Path +from indico.client import IndicoClient +from indico.queries import CreateDataset, CreateModelGroup +from indico.types import ModelGroup, Dataset + +PUBLIC_URL = "https://github.com/IndicoDataSolutions/indico-client-python/raw/master/tests/integration/data/" + + +@pytest.fixture(scope="module") +def airlines_dataset(indico): + client = IndicoClient() + dataset_filepath = str(Path(__file__).parents[0]) + "/AirlineComplaints.csv" + + response = client.call( + CreateDataset( + name=f"AirlineComplaints-test-{int(time.time())}", files=[dataset_filepath] + ) + ) + assert response.status == "COMPLETE" + return response + + +@pytest.fixture(scope="module") +def too_small_dataset(indico): + client = IndicoClient() + dataset_filepath = str(Path(__file__).parents[0]) + "/TooSmall.csv" + + response = client.call( + CreateDataset( + name=f"TooSmall-test-{int(time.time())}", files=[dataset_filepath] + ) + ) + assert response.status == "COMPLETE" + return response + + +@pytest.fixture(scope="module") +def airlines_model_group(indico, airlines_dataset: Dataset) -> ModelGroup: + client = IndicoClient() + name = f"TestCreateModelGroup-{int(time.time())}" + mg: ModelGroup = client.call( + CreateModelGroup( + name=name, + dataset_id=airlines_dataset.id, + source_column_id=airlines_dataset.datacolumn_by_name("Text").id, + labelset_id=airlines_dataset.labelset_by_name("Target_1").id, + wait=True, + ) + ) + return mg + + +@pytest.fixture(scope="module") +def cats_dogs_image_dataset(indico): + client = IndicoClient() + dataset_filepath = str(Path(__file__).parents[0]) + "/dog_vs_cats_small.csv" + + response = client.call( + CreateDataset( + name=f"DogsAndCats-test-{int(time.time())}", + files=dataset_filepath, + from_local_images=True, + ) + ) + assert response.status == "COMPLETE" + return response + + +@pytest.fixture(scope="module") +def cats_dogs_modelgroup(indico, cats_dogs_image_dataset: Dataset) -> ModelGroup: + client = IndicoClient() + name = f"TestCreateObjectDetectionMg-{int(time.time())}" + + model_training_options = { + "max_iter": 20, + "lr": 0.1, + "batch_size": 1, + "filter_empty": False, + "test_size": 0.2, + "use_small_model": True, + } + + mg: ModelGroup = client.call( + CreateModelGroup( + name=name, + dataset_id=cats_dogs_image_dataset.id, + source_column_id=cats_dogs_image_dataset.datacolumn_by_name("urls").id, + labelset_id=cats_dogs_image_dataset.labelset_by_name("label").id, + model_training_options=model_training_options, + wait=True, + ) + ) + return mg + + +@pytest.fixture(scope="module") +def org_annotate_dataset(indico): + client = IndicoClient() + dataset_filepath = str(Path(__file__).parents[0]) + "/org-annotate-labeled.csv" + + response = client.call( + CreateDataset( + name=f"OrgAnnotate-test-{int(time.time())}", files=[dataset_filepath] + ) + ) + assert response.status == "COMPLETE" + return response + + +@pytest.fixture(scope="module") +def org_annotate_model_group(indico, org_annotate_dataset: Dataset) -> ModelGroup: + client = IndicoClient() + name = f"TestFinetuneModelGroup-{int(time.time())}" + mg: ModelGroup = client.call( + CreateModelGroup( + name=name, + dataset_id=org_annotate_dataset.id, + source_column_id=org_annotate_dataset.datacolumn_by_name( + "News Headlines w/Company Names" + ).id, + labelset_id=org_annotate_dataset.labelset_by_name("question_825").id, + wait=True, + ) + ) + return mg diff --git a/src/test/data/dog_vs_cats_small.csv b/src/test/data/dog_vs_cats_small.csv new file mode 100644 index 0000000..a192655 --- /dev/null +++ b/src/test/data/dog_vs_cats_small.csv @@ -0,0 +1,26 @@ +filename,label +1.jpg,"[{""top"": 57, ""bottom"": 495, ""left"": 103, ""right"": 302, ""label"": ""Dog\n""}]" +2.jpg,"[{""top"": 28, ""bottom"": 292, ""left"": 1, ""right"": 260, ""label"": ""Dog\n""}]" +3.jpg,"[{""top"": 57, ""bottom"": 259, ""left"": 44, ""right"": 253, ""label"": ""Dog\n""}]" +4.jpg,"[{""top"": 30, ""bottom"": 270, ""left"": 15, ""right"": 360, ""label"": ""Dog\n""}]" +5.jpg,"[{""top"": 6, ""bottom"": 399, ""left"": 81, ""right"": 394, ""label"": ""Cat""}]" +6.jpg,"[{""top"": 52, ""bottom"": 311, ""left"": 67, ""right"": 482, ""label"": ""Cat""}]" +7.jpg,"[{""top"": 12, ""bottom"": 146, ""left"": 6, ""right"": 182, ""label"": ""Cat""}]" +8.jpg,"[{""top"": 59, ""bottom"": 228, ""left"": 26, ""right"": 233, ""label"": ""Cat""}]" +9.jpg,"[{""top"": 30, ""bottom"": 367, ""left"": 36, ""right"": 475, ""label"": ""Cat""}]" +10.jpg,"[{""top"": 38, ""bottom"": 318, ""left"": 178, ""right"": 340, ""label"": ""Cat""}]" +11.jpg,"[{""top"": 5, ""bottom"": 365, ""left"": 37, ""right"": 255, ""label"": ""Cat""}]" +12.jpg,"[{""top"": 111, ""bottom"": 396, ""left"": 74, ""right"": 246, ""label"": ""Dog\n""}]" +13.jpg,"[{""top"": 73, ""bottom"": 369, ""left"": 83, ""right"": 496, ""label"": ""Cat""}]" +14.jpg,"[{""top"": 15, ""bottom"": 257, ""left"": 17, ""right"": 485, ""label"": ""Cat""}]" +15.jpg,"[{""top"": 8, ""bottom"": 378, ""left"": 41, ""right"": 240, ""label"": ""Cat""}]" +16.jpg,"[{""top"": 24, ""bottom"": 235, ""left"": 27, ""right"": 190, ""label"": ""Cat""}, {""top"": 4, ""bottom"": 357, ""left"": 205, ""right"": 429, ""label"": ""Cat""}]" +17.jpg,"[{""top"": 3, ""bottom"": 382, ""left"": 21, ""right"": 209, ""label"": ""Dog\n""}]" +18.jpg,"[{""top"": 47, ""bottom"": 452, ""left"": 47, ""right"": 487, ""label"": ""Dog\n""}]" +19.jpg,"[{""top"": 10, ""bottom"": 269, ""left"": 28, ""right"": 286, ""label"": ""Cat""}]" +20.jpg,"[{""top"": 31, ""bottom"": 225, ""left"": 30, ""right"": 339, ""label"": ""Cat""}]" +21.jpg,"[{""top"": -1, ""bottom"": 439, ""left"": 44, ""right"": 428, ""label"": ""Dog\n""}]" +22.jpg,"[{""top"": 16, ""bottom"": 242, ""left"": 4, ""right"": 381, ""label"": ""Cat""}]" +23.jpg,"[{""top"": 9, ""bottom"": 246, ""left"": 10, ""right"": 292, ""label"": ""Dog\n""}]" +24.jpg,"[{""top"": 31, ""bottom"": 479, ""left"": 95, ""right"": 331, ""label"": ""Dog\n""}]" +25.jpg,"[{""top"": 70, ""bottom"": 280, ""left"": 21, ""right"": 117, ""label"": ""Cat""}, {""top"": 69, ""bottom"": 292, ""left"": 155, ""right"": 289, ""label"": ""Cat""}, {""top"": 16, ""bottom"": 181, ""left"": 314, ""right"": 490, ""label"": ""Cat""}]" diff --git a/src/test/data/image_link_small.csv b/src/test/data/image_link_small.csv new file mode 100644 index 0000000..32994a8 --- /dev/null +++ b/src/test/data/image_link_small.csv @@ -0,0 +1,25 @@ +source,target +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTr-3LOoMckr0H4Wrt1CqCnAh1SGd8RjUeV2MCNsynmlKPMDuCOwblXMOE,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS5hlxwYTItXouHK0j2Ft0y4taqlAZ02NtEAmN6w5lDuXw8m2nvUSXsQa4,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ6nWAm_EU3gMkB5GzDiOVf3ttIlN--xEMOM6U2x-FMS038L5qftgOIFnQ,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR9VfppenR88RkQ_S9TnnB2j99RAJnNEx8u-Ek4lz6Ajw1Kig-c14I88W_C,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQKY4ydeszOO3B4mRfYFzDCGoBCw7dG1VXsAZuV5jQwUdVdlcuQ8FTYJes,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTQFOB-jV9fhEFolZY8ELm4N0jy9JVoiDQH4wD8U_Oct0BuhoTm7vq_dzU,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSthgKLjrIQajXtyP91pDI8reEbITSzrsGMIkHDAOtUoWzxJZl4UIuafS9z4w,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTa6g0kaBAzZMg6bc2wxTVV2NVHWL5StHKCtbtjGFD01O9KjlxM0HEwV3_4,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT_nHy1Lok1Wsu8SDkio5-MB8MQ3EA5YnDK-fiIXDQjnQka-nan-uMvxfOF,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRRyBRgSzxKPkdZKl3DA9zP6nZTqBNiHoovh02dzjqjTHeEyTyNGJsujWA,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRnRmzwRqb_pyflqWbTr_sCBVYHma4lPNujAEli7AawY7KCv8hsjylHUYU,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQjnxsX0PRYHJLakd1kMHFxB7vUTkO24PoVPCy6nPw2R8jxQcocr89bsNA,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_Glb_pfeyTQuwp4TjQFgJkWJS0u9vzCNStEKZL2VApevveSYGMZuvjTI,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTyPT2sg9e5yM19Y6KFmCR0LzlSrsne3GpOppkrKzkbKNVk0My9bkJQtE8q,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSujwySKAi-BA18RlFk4FOvhP7qfg3WhCgBColco-sLcypY5UZnqbmaodXL,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR9Adws6CisDjyj5Fpo9QssY-F5EiAMVQ5G21WyOW5feZzx6MJgd4kInH6S,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSoNIc3WcfDpBlYxE4r0V9fgud6JV0N8yAyB_RwVUGNPGwFK-xiUPYzk4M,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTO4mSgYwwv1nunR1M5E5ujSqUCJ_bf9cskkQmsRHCjK7VscvCoiIVbC-YS,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQuZ8VTerXVCoYxEwlaKIbQpZ399sYlCtGpwA3rI1j05pJpABY7nU04NTgl,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQDw5rrT9vv2jqMMUb-1fOm7FBJ0bijinYyDXQA1Q6anjk1x5xpdkBxIOo,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQhLVMQyGD73TIWs3Bw1Cd1556DtNs9T0FHSnI1PLdkDKB0h4NYVewj5YoIrQ,trash can +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ7K0pqGBEtCxGEpMk8zQcIy3vRXS4urOCb4euHjj1ZRK5QG8En6qyinw,trash can +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTHFf_e2DevC9zriHT1T0a43PATbTJQXttzCnHxvFGLkN4VZsNhjKNMHfcedw,trash can +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQyt6zL4YQoRCN_nzS2WnzY0a8o9IFKKU7ExG6AmKjcqGm3c31ViwhkRYHDLA,trash can diff --git a/src/test/data/image_link_small_with_broken.csv b/src/test/data/image_link_small_with_broken.csv new file mode 100644 index 0000000..d78c232 --- /dev/null +++ b/src/test/data/image_link_small_with_broken.csv @@ -0,0 +1,25 @@ +source,target +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTr-3LOoMckr0H4Wrt1CqCnAh1SGd8RjUeV2MCNsynmlKPMDuCOwblXMOE,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS5hlxwYTItXouHK0j2Ft0y4taqlAZ02NtEAmN6w5lDuXw8m2nvUSXsQa4,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ6nWAm_EU3gMkB5GzDiOVf3ttIlN--xEMOM6U2x-FMS038L5qftgOIFnQ,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR9VfppenR88RkQ_S9TnnB2j99RAJnNEx8u-Ek4lz6Ajw1Kig-c14I88W_C,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQKY4ydeszOO3B4mRfYFzDCGoBCw7dG1VXsAZuV5jQwUdVdlcuQ8FTYJes,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTQFOB-jV9fhEFolZY8ELm4N0jy9JVoiDQH4wD8U_Oct0BuhoTm7vq_dzU,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSthgKLjrIQajXtyP91pDI8reEbITSzrsGMIkHDAOtUoWzxJZl4UIuafS9z4w,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTa6g0kaBAzZMg6bc2wxTVV2NVHWL5StHKCtbtjGFD01O9KjlxM0HEwV3_4,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT_nHy1Lok1Wsu8SDkio5-MB8MQ3EA5YnDK-fiIXDQjnQka-nan-uMvxfOF,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRRyBRgSzxKPkdZKl3DA9zP6nZTqBNiHoovh02dzjqjTHeEyTyNGJsujWA,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRnRmzwRqb_pyflqWbTr_sCBVYHma4lPNujAEli7AawY7KCv8hsjylHUYU,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQjnxsX0PRYHJLakd1kMHFxB7vUTkO24PoVPCy6nPw2R8jxQcocr89bsNA,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_Glb_pfeyTQuwp4TjQFgJkWJS0u9vzCNStEKZL2VApevveSYGMZuvjTI,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTyPT2sg9e5yM19Y6KFmCR0LzlSrsne3GpOppkrKzkbKNVk0My9bkJQtE8q,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSujwySKAi-BA18RlFk4FOvhP7qfg3WhCgBColco-sLcypY5UZnqbmaodXL,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR9Adws6CisDjyj5Fpo9QssY-F5EiAMVQ5G21WyOW5feZzx6MJgd4kInH6S,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSoNIc3WcfDpBlYxE4r0V9fgud6JV0N8yAyB_RwVUGNPGwFK-xiUPYzk4M,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTO4mSgYwwv1nunR1M5E5ujSqUCJ_bf9cskkQmsRHCjK7VscvCoiIVbC-YS,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQuZ8VTerXVCoYxEwlaKIbQpZ399sYlCtGpwA3rI1j05pJpABY7nU04NTgl,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQDw5rrT9vv2jqMMUb-1fOm7FBJ0bijinYyDXQA1Q6anjk1x5xpdkBxIOo,horse +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQhLVMQyGD73TIWs3Bw1Cd1556DtNs9T0FHSnI1PLdkDKB0h4NYVewj5YoIrQ,trash can +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ7K0pqGBEtCxGEpMk8zQcIy3vRXS4urOCb4euHjj1ZRK5QG8En6qyinw,trash can +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTHFf_e2DevC9zriHT1T0a43PATbTJQXttzCnHxvFGLkN4VZsNhjKNMHfcedw,trash can +https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQyt6zL4YQoRCN_nzS2WnzY0a8o9IFKKU7ExG6AmKjcqG,trash can diff --git a/src/test/data/mock.pdf b/src/test/data/mock.pdf new file mode 100644 index 0000000..9202d66 Binary files /dev/null and b/src/test/data/mock.pdf differ diff --git a/src/test/data/mock_2.pdf b/src/test/data/mock_2.pdf new file mode 100644 index 0000000..9202d66 Binary files /dev/null and b/src/test/data/mock_2.pdf differ diff --git a/src/test/data/mock_3.pdf b/src/test/data/mock_3.pdf new file mode 100644 index 0000000..9202d66 Binary files /dev/null and b/src/test/data/mock_3.pdf differ diff --git a/src/test/data/org-annotate-labeled.csv b/src/test/data/org-annotate-labeled.csv new file mode 100644 index 0000000..e44d4fa --- /dev/null +++ b/src/test/data/org-annotate-labeled.csv @@ -0,0 +1,113 @@ +"row_index","user_id","News Headlines w/Company Names","question_825" +"0","11936","AT&T reportedly in talks to buy DirecTV for more than $50 billion March 5, 2014","[{""startOffset"": 0, ""endOffset"": 5, ""label"": ""org""}, {""startOffset"": 32, ""endOffset"": 39, ""label"": ""org""}]" +"1","11936","Does ADM Acquisition Precede a Move Offshore? April 15, 1990","[{""startOffset"": 5, ""endOffset"": 8, ""label"": ""org""}]" +"2","11936","Encana to sell its Jonah field properties in Wyoming for $1.8 billion July 1, 2000","[{""startOffset"": 0, ""endOffset"": 6, ""label"": ""org""}]" +"3","11936","General Motors Recalls 1.5 Million More Vehicles Following Problems With ... May 5, 1900","[{""startOffset"": 0, ""endOffset"": 14, ""label"": ""org""}]" +"4","11936","GM Now Says It Detected An Ignition Switch Problem Dating Back to 2001 August 5 1992","[{""startOffset"": 0, ""endOffset"": 2, ""label"": ""org""}]" +"5","11936","Micex Slides With Ruble on Sanctions as Rosneft Falls on Yukos May 4, 2002","[{""startOffset"": 0, ""endOffset"": 5, ""label"": ""org""}]" +"6","11936","Google Partners With Barnes & Noble To Challenge Amazon With Same-Day ... January 1, 2001","[{""startOffset"": 0, ""endOffset"": 6, ""label"": ""org""}, {""startOffset"": 21, ""endOffset"": 35, ""label"": ""org""}]" +"7","11936","Obama to name former Procter & Gamble CEO head of troubled veterans affairs ... February 2, 2002","[{""startOffset"": 21, ""endOffset"": 37, ""label"": ""org""}]" +"8","11936","Google feels weight of mobile as sales fall short March 3, 2002","[{""startOffset"": 0, ""endOffset"": 6, ""label"": ""org""}]" +"9","11936","GoPro's IPO Price $100 Million: Camera Maker Looks to Raise Serious Cash ... April 4, 2004","[{""startOffset"": 0, ""endOffset"": 5, ""label"": ""org""}]" +"10","11936","Pure Storage Raises $225M in Series F Funding May 5, 2005","[{""startOffset"": 0, ""endOffset"": 12, ""label"": ""org""}]" +"11","11936","Toyota Moving 250 Jobs From Kentucky To York Township June 6, 2006","[{""startOffset"": 0, ""endOffset"": 6, ""label"": ""org""}]" +"12","11936","GM to offer owners of recalled vehicles $500 off new purchase June 6, 2006","[{""startOffset"": 0, ""endOffset"": 2, ""label"": ""org""}]" +"13","11936","Family Dollar Stock (NYSE: FDO) Up 26% – Will Dollar General Make ... June 6, 2006","[{""startOffset"": 0, ""endOffset"": 13, ""label"": ""org""}]" +"14","11936","News Buzz - American Eagle Outfitters(NYSE:AEO), Barclays PLC (ADR)(NYSE ... June 6, 2006","[{""startOffset"": 12, ""endOffset"": 37, ""label"": ""org""}, {""startOffset"": 49, ""endOffset"": 57, ""label"": ""org""}]" +"15","11936","Mobile advertising drives Facebook earnings surge","[{""startOffset"": 26, ""endOffset"": 34, ""label"": ""org""}]" +"16","11936","Amaya shares surge on acquisition of PokerStars owner","[{""startOffset"": 0, ""endOffset"": 5, ""label"": ""org""}]" +"17","11936","Coca-Cola sells more drinks but soda dips; profit declines 8 percent","[{""startOffset"": 0, ""endOffset"": 9, ""label"": ""org""}]" +"18","11936","Etihad rescues Alitalia with a deal to acquire 49% stake","[{""startOffset"": 0, ""endOffset"": 6, ""label"": ""org""}, {""startOffset"": 15, ""endOffset"": 23, ""label"": ""org""}]" +"19","11936","GM CEO Knew Of Chevy Cobalt Safety Review In December","[{""startOffset"": 0, ""endOffset"": 2, ""label"": ""org""}]" +"20","11936","Alibaba chooses NYSE, not Nasdaq, for what may be world's largest IPO","[{""startOffset"": 0, ""endOffset"": 7, ""label"": ""org""}]" +"21","11936","SunTrust Settlements Surpass $1 Billion Past Month","[{""startOffset"": 0, ""endOffset"": 8, ""label"": ""org""}]" +"22","11936","Elizabeth Arden Inc.: Elizabeth Arden, Inc. Announces Third Quarter Fiscal 2014 ...","[{""startOffset"": 0, ""endOffset"": 15, ""label"": ""org""}, {""startOffset"": 22, ""endOffset"": 37, ""label"": ""org""}]" +"23","11936","Built Ford Tough? Ford needs it in next CEO","[{""startOffset"": 6, ""endOffset"": 10, ""label"": ""org""}, {""startOffset"": 18, ""endOffset"": 22, ""label"": ""org""}]" +"24","11936","KFC, Pizza Hut owner Yum Brands says China food scandal hurting sales, might ...","[{""startOffset"": 21, ""endOffset"": 31, ""label"": ""org""}]" +"25","11936","Pfizer Will Not Make Offer For AstraZeneca","[{""startOffset"": 0, ""endOffset"": 6, ""label"": ""org""}, {""startOffset"": 31, ""endOffset"": 42, ""label"": ""org""}]" +"26","11936","Adobe Beats 2QFY14 Revenue And Earnings Estimates","[{""startOffset"": 0, ""endOffset"": 5, ""label"": ""org""}]" +"27","11936","Chinese Twitter firm Weibo to go public in US","[{""startOffset"": 8, ""endOffset"": 15, ""label"": ""org""}, {""startOffset"": 21, ""endOffset"": 26, ""label"": ""org""}]" +"28","11936","Everyone wins in AstraZeneca deal: Pfizer boss","[{""startOffset"": 17, ""endOffset"": 28, ""label"": ""org""}, {""startOffset"": 35, ""endOffset"": 41, ""label"": ""org""}]" +"29","11936","GM to Invest $450M in Michigan, Add 1400 Jobs","[{""startOffset"": 0, ""endOffset"": 2, ""label"": ""org""}]" +"30","11936","eBay Tax Bill, Outlook Stymie Shares","[{""startOffset"": 0, ""endOffset"": 4, ""label"": ""org""}]" +"31","11936","Southern Co., Turner Renewable buy Macho Springs solar power project","[{""startOffset"": 0, ""endOffset"": 11, ""label"": ""org""}]" +"32","11936","Shareholders disappointed by AstraZeneca rejection of Pfizer","[{""startOffset"": 29, ""endOffset"": 40, ""label"": ""org""}, {""startOffset"": 54, ""endOffset"": 60, ""label"": ""org""}]" +"33","11936","SunTrust and Citi Mortgage Rates Summary for Thursday, April 17","[{""startOffset"": 0, ""endOffset"": 8, ""label"": ""org""}, {""startOffset"": 13, ""endOffset"": 26, ""label"": ""org""}]" +"34","11936","Pfizer Earnings Confirm Reasons for AstraZeneca Offer","[{""startOffset"": 0, ""endOffset"": 6, ""label"": ""org""}, {""startOffset"": 36, ""endOffset"": 47, ""label"": ""org""}]" +"35","11936","GM Getting Parts for Ignition Switch Repairs","[{""startOffset"": 0, ""endOffset"": 2, ""label"": ""org""}]" +"36","11936","Ford's Mulally expected to stand down before year end to hand wheel to Fields","[{""startOffset"": 0, ""endOffset"": 4, ""label"": ""org""}]" +"37","11936","Google has set aside $30bn as it mulls foreign takeover targets","[{""startOffset"": 0, ""endOffset"": 6, ""label"": ""org""}]" +"38","11936","Toyota moving its US base from California to Texas","[{""startOffset"": 0, ""endOffset"": 6, ""label"": ""org""}]" +"39","11936","Wal-Mart sues Visa for fixing card interchange fees","[{""startOffset"": 0, ""endOffset"": 8, ""label"": ""org""}]" +"40","11936","Yahoo's Marissa Mayer Made $24.9M In 2013, -31.9%","[{""startOffset"": 0, ""endOffset"": 5, ""label"": ""org""}]" +"41","11936","AT&T in Talks to Buy DirecTV for Nearly $50 Billion: Report","[{""startOffset"": 0, ""endOffset"": 4, ""label"": ""org""}, {""startOffset"": 21, ""endOffset"": 28, ""label"": ""org""}]" +"42","11936","Pfizer eyes AstraZeneca for $100 billion acquisition","[{""startOffset"": 0, ""endOffset"": 6, ""label"": ""org""}, {""startOffset"": 12, ""endOffset"": 23, ""label"": ""org""}]" +"43","11936","Company Update (NYSE:BAC): BofA ex-CFO agrees to settle NY lawsuit over ...","[{""startOffset"": 27, ""endOffset"": 31, ""label"": ""org""}]" +"44","11936","Backlash Over $106B Pfizer-AstraZeneca Deal Spans Atlantic","[{""startOffset"": 20, ""endOffset"": 25, ""label"": ""org""}, {""startOffset"": 27, ""endOffset"": 38, ""label"": ""org""}]" +"45","11936","Alstom shares up on GE takeover bid","[{""startOffset"": 0, ""endOffset"": 6, ""label"": ""org""}, {""startOffset"": 20, ""endOffset"": 22, ""label"": ""org""}]" +"46","11936","Hewlett Packard Cutting Up to Another 16000 Jobs","[{""startOffset"": 0, ""endOffset"": 15, ""label"": ""org""}]" +"47","11936","Samsung's Q2 operating profit hits 2-year low at $7.1 billion","[{""startOffset"": 0, ""endOffset"": 7, ""label"": ""org""}]" +"48","11936","Nokia Sales Drop At Networks","[{""startOffset"": 0, ""endOffset"": 5, ""label"": ""org""}]" +"49","11936","Pfizer Details Case for AstraZeneca Deal --Update","[{""startOffset"": 0, ""endOffset"": 6, ""label"": ""org""}, {""startOffset"": 24, ""endOffset"": 35, ""label"": ""org""}]" +"50","11936","Tesla Motors Inc (TSLA) Earnings: The Epilogue","[{""startOffset"": 0, ""endOffset"": 5, ""label"": ""org""}]" +"51","11936","Chrysler Confirms New 100 Sedan, 300 Facelift and New CUVs","[{""startOffset"": 0, ""endOffset"": 8, ""label"": ""org""}]" +"52","11936","Free coffee at McDonald's amid breakfast war","[{""startOffset"": 15, ""endOffset"": 25, ""label"": ""org""}]" +"53","11936","The Interpublic Group of Companies - Options Analysis","[{""startOffset"": 0, ""endOffset"": 21, ""label"": ""org""}]" +"54","11936","French bank BNP Paribas fined $8.9 billion for violating US sanctions","[{""startOffset"": 12, ""endOffset"": 23, ""label"": ""org""}]" +"55","11936","Yahoo! Surges 10%: Q1 Rev, EPS Beat; Alibaba Revenue Surged 66%","[{""startOffset"": 0, ""endOffset"": 6, ""label"": ""org""}, {""startOffset"": 37, ""endOffset"": 44, ""label"": ""org""}]" +"56","11936","GM expanding ignition switch recall","[{""startOffset"": 0, ""endOffset"": 2, ""label"": ""org""}]" +"57","11936","Report: Ford's former Alan Mulally was close to axing Lincoln last year","[{""startOffset"": 8, ""endOffset"": 12, ""label"": ""org""}]" +"58","11936","CORRECT: Pfizer Continues Political Campaign For AstraZeneca Takeover","[{""startOffset"": 9, ""endOffset"": 15, ""label"": ""org""}, {""startOffset"": 49, ""endOffset"": 60, ""label"": ""org""}]" +"59","11936","Tiffany Reports Stellar Q1 Earnings - Analyst Blog","[{""startOffset"": 0, ""endOffset"": 7, ""label"": ""org""}]" +"60","11936","Fiat shareholders approve name change","[{""startOffset"": 0, ""endOffset"": 4, ""label"": ""org""}]" +"61","11936","Valeant Pharmaceuticals International sweetens takeover offer for Allergan, sells ...","[{""startOffset"": 0, ""endOffset"": 23, ""label"": ""org""}, {""startOffset"": 66, ""endOffset"": 74, ""label"": ""org""}]" +"62","11936","Google Inc (GOOGL) Plans To Spend $30 Billion On Foreign Acquisitions","[{""startOffset"": 0, ""endOffset"": 6, ""label"": ""org""}]" +"63","11936","Bank Of America To Pay $9.3 Billion To Settle Mortgage Bond Claims","[{""startOffset"": 0, ""endOffset"": 15, ""label"": ""org""}]" +"64","11936","Target faces identity crisis","[{""startOffset"": 0, ""endOffset"": 6, ""label"": ""org""}]" +"65","11936","Top Sony executives to return bonuses","[{""startOffset"": 4, ""endOffset"": 8, ""label"": ""org""}]" +"66","11936","Botox-maker Allergan rejects takeover bid by Canada's Valeant Pharmaceuticals","[{""startOffset"": 12, ""endOffset"": 20, ""label"": ""org""}, {""startOffset"": 54, ""endOffset"": 77, ""label"": ""org""}]" +"67","11936","EBay: We Are Not Announcing Any Large U.S. Acquisition","[{""startOffset"": 0, ""endOffset"": 4, ""label"": ""org""}]" +"68","11936","AIG Settles Legacy RMBS Dispute With Bank of America","[{""startOffset"": 0, ""endOffset"": 3, ""label"": ""org""}, {""startOffset"": 37, ""endOffset"": 52, ""label"": ""org""}]" +"69","11936","Kraft recalls 96000 pounds of mislabeled hot dogs","[{""startOffset"": 0, ""endOffset"": 5, ""label"": ""org""}]" +"70","11936","BlackBerry surprises with small profit","[{""startOffset"": 0, ""endOffset"": 10, ""label"": ""org""}]" +"71","11936","Hyundai ix25 compact SUV unveiled at 2014 Beijing Motor Show","[{""startOffset"": 0, ""endOffset"": 7, ""label"": ""org""}]" +"72","11936","Nokia posts Q1 interim report, handset sales down 30 percent","[{""startOffset"": 0, ""endOffset"": 5, ""label"": ""org""}]" +"73","11936","Deutsche Bank Q2 profit up 16 percent, debt trading steady","[{""startOffset"": 0, ""endOffset"": 13, ""label"": ""org""}]" +"74","11936","Mortgage Rate Summary for Suntrust, Capital One Jul 6, 2014","[{""startOffset"": 26, ""endOffset"": 34, ""label"": ""org""}, {""startOffset"": 36, ""endOffset"": 47, ""label"": ""org""}]" +"75","11936","French Government Criticise $10bn BNP Paribas Fine","[{""startOffset"": 34, ""endOffset"": 45, ""label"": ""org""}]" +"76","11936","Microsoft Unveils Office For IPad In Big Mobile Move [VIDEO]","[{""startOffset"": 0, ""endOffset"": 9, ""label"": ""org""}]" +"77","11936","US launches probe into Herbalife","[{""startOffset"": 23, ""endOffset"": 32, ""label"": ""org""}]" +"78","11936","Coach (COH) Releases Quarterly Earnings Results","[{""startOffset"": 0, ""endOffset"": 5, ""label"": ""org""}]" +"79","11936","Target's Interim CEO Hopes Canadians Give Retailer Another Chance","[{""startOffset"": 0, ""endOffset"": 6, ""label"": ""org""}]" +"80","11936","Why DSW, Inc. Shares Plummeted Today","[{""startOffset"": 4, ""endOffset"": 7, ""label"": ""org""}]" +"81","11936","Burger King Tricks Customers With ""Proud Whopper"" Special Ingredient","[{""startOffset"": 0, ""endOffset"": 11, ""label"": ""org""}]" +"82","11936","Herbalife falls 13% on report of criminal probe","[{""startOffset"": 0, ""endOffset"": 9, ""label"": ""org""}]" +"83","11936","Facebook Earnings: The Social Network Enters A New Era Of Slow Growth","[{""startOffset"": 0, ""endOffset"": 8, ""label"": ""org""}]" +"84","11936","Target taps Pepsi executive Brian Cornell to serve as its new chairman and CEO","[{""startOffset"": 0, ""endOffset"": 6, ""label"": ""org""}, {""startOffset"": 12, ""endOffset"": 17, ""label"": ""org""}]" +"85","11936","Intel Corp (NASDAQ:INTC) Shares Hits Ten year Highs with Express Inc (NYSE ...","[{""startOffset"": 0, ""endOffset"": 5, ""label"": ""org""}, {""startOffset"": 57, ""endOffset"": 64, ""label"": ""org""}]" +"86","11936","GM recalls 3.4 million more cars for ignition problem","[{""startOffset"": 0, ""endOffset"": 2, ""label"": ""org""}]" +"87","11936","eBay Inc (EBAY) news: Icahn: eBay could spin off 20% of PayPal in an IPO","[{""startOffset"": 0, ""endOffset"": 4, ""label"": ""org""}, {""startOffset"": 56, ""endOffset"": 62, ""label"": ""org""}]" +"88","11936","Walt Disney Holds Bullish History for Longs Trading Shares off Evening Earnings","[{""startOffset"": 0, ""endOffset"": 11, ""label"": ""org""}]" +"89","11936","Bank of America posts loss, hurt by $6B legal expenses","[{""startOffset"": 0, ""endOffset"": 15, ""label"": ""org""}]" +"90","11936","Merck's Investigational Chronic Hepatitis C Combination Therapy MK-5172/MK ...","[{""startOffset"": 0, ""endOffset"": 5, ""label"": ""org""}]" +"91","11936","General Motors recall repairs to start Monday","[{""startOffset"": 0, ""endOffset"": 14, ""label"": ""org""}]" +"92","11936","Has Microsoft waited far too long to bring Office to the iPad?","[{""startOffset"": 4, ""endOffset"": 13, ""label"": ""org""}]" +"93","11936","Google says Gmail encrypted","[{""startOffset"": 0, ""endOffset"": 6, ""label"": ""org""}]" +"94","11936","Report claims Yahoo! plans to lure YouTube stars to its own video service","[{""startOffset"": 14, ""endOffset"": 20, ""label"": ""org""}]" +"95","11936","Apple posts record Q2 revenue, with strong iPhone sales","[{""startOffset"": 0, ""endOffset"": 5, ""label"": ""org""}]" +"96","11936","Satya Nadella reveals new vision for Microsoft at Code Conference","[{""startOffset"": 37, ""endOffset"": 46, ""label"": ""org""}]" +"97","11936","AT&T Announces Mobile Share Data On 30+ GM Vehicles By Year's End, $10 ...","[{""startOffset"": 0, ""endOffset"": 4, ""label"": ""org""}, {""startOffset"": 40, ""endOffset"": 42, ""label"": ""org""}]" +"98","11936","Nokia Lumia 830 finds its way online","[{""startOffset"": 0, ""endOffset"": 5, ""label"": ""org""}]" +"99","11936","Is this HTC's Google Nexus 9 tablet?","[{""startOffset"": 8, ""endOffset"": 11, ""label"": ""org""}, {""startOffset"": 14, ""endOffset"": 20, ""label"": ""org""}]" +"100","11936","Google Ready to Release 64-bit Android Devices","[{""startOffset"": 0, ""endOffset"": 6, ""label"": ""org""}]" +"101","11936","Amazon buying Twitch for $970M in cash (AMZN)","[{""startOffset"": 0, ""endOffset"": 6, ""label"": ""org""}, {""startOffset"": 14, ""endOffset"": 20, ""label"": ""org""}]" +"102","11936","Microsoft accidentally reveals plans to bring folder support to Windows Phone 8.1","[{""startOffset"": 0, ""endOffset"": 9, ""label"": ""org""}]" +"103","11936","Google Q1 Earnings Fall Short On Weak Paid Ad Clicks","[{""startOffset"": 0, ""endOffset"": 6, ""label"": ""org""}]" +"104","11936","Toyota agrees to pay $1.2 billion to settle safety charges","[{""startOffset"": 0, ""endOffset"": 6, ""label"": ""org""}]" +"105","11936","Microsoft closes Xbox Entertainment, cancels original content plans","[{""startOffset"": 0, ""endOffset"": 9, ""label"": ""org""}]" +"106","11936","BMW and Tesla Meet To Talk Superchargers","[{""startOffset"": 0, ""endOffset"": 3, ""label"": ""org""}, {""startOffset"": 8, ""endOffset"": 13, ""label"": ""org""}]" +"107","11936","Sony's Project Morpheus is a VR headset for PS4","[{""startOffset"": 0, ""endOffset"": 4, ""label"": ""org""}]" +"108","11936","Amazon to launch smartphone?","[{""startOffset"": 0, ""endOffset"": 6, ""label"": ""org""}]" +"109","11936","Apple Slices into Mobile Health Business with 'Healthkit'","[{""startOffset"": 0, ""endOffset"": 5, ""label"": ""org""}]" +"110","11936","Microsoft finally delivers Office for Apple's iPad","[{""startOffset"": 0, ""endOffset"": 9, ""label"": ""org""}, {""startOffset"": 38, ""endOffset"": 43, ""label"": ""org""}]" +"111","11936","GM's Massive Recalls Setting Unwanted Records","[{""startOffset"": 0, ""endOffset"": 2, ""label"": ""org""}]" diff --git a/src/test/data/org-sample.pdf b/src/test/data/org-sample.pdf new file mode 100644 index 0000000..e0c3e81 Binary files /dev/null and b/src/test/data/org-sample.pdf differ diff --git a/src/test/data/pdf0.pdf b/src/test/data/pdf0.pdf new file mode 100644 index 0000000..7f47e39 Binary files /dev/null and b/src/test/data/pdf0.pdf differ diff --git a/src/test/data/pdf1.pdf b/src/test/data/pdf1.pdf new file mode 100644 index 0000000..8d01b72 Binary files /dev/null and b/src/test/data/pdf1.pdf differ diff --git a/src/test/data/pdf2.pdf b/src/test/data/pdf2.pdf new file mode 100644 index 0000000..cea9715 Binary files /dev/null and b/src/test/data/pdf2.pdf differ diff --git a/src/test/data/pdf_links.csv b/src/test/data/pdf_links.csv new file mode 100644 index 0000000..56ebd22 --- /dev/null +++ b/src/test/data/pdf_links.csv @@ -0,0 +1,4 @@ +pdf_link +https://storage.googleapis.com/indico-testing/test-pdfs/financial_disclosures/Lee-Ebony-Letise.pdf +https://storage.googleapis.com/indico-testing/test-pdfs/financial_disclosures/Matthew-Miller.pdf +https://storage.googleapis.com/indico-testing/test-pdfs/financial_disclosures/Mia-Palmieri-Heck.pdf \ No newline at end of file diff --git a/src/test/data/staffer_large.csv b/src/test/data/staffer_large.csv new file mode 100644 index 0000000..66c7263 --- /dev/null +++ b/src/test/data/staffer_large.csv @@ -0,0 +1,14291 @@ +"row_index","user_id","text","labels" +"1","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +Williams, Meredith B. + +Staff Assistant, Department of State, State +Date of Appointment: 02/15/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +Meredith B. Williams +User ID: 336A81D97699D796 +04/07/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +Joshua A. Kretman +User ID: 6EB5EC20A0C5F1DD +04/07/2017 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +Joshua A. Kretman +User ID: 6EB5EC20A0C5F1DD +04/07/2017 + +Reviewer: + +eSigned in FDM by: + +Joshua A. Kretman +User ID: 6EB5EC20A0C5F1DD +04/07/2017 + +U.S. Office of Government Ethics Certification +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 Profectus Global Arlington, VA, USA Business Enterprise Employee 04/2014 10/2015 + +2 Profectus Global Arlington, VA, USA Business Enterprise Consultant 09/2016 02/2017 + +3 XLP Capital New York, NY, USA Business Enterprise Employee 10/2015 02/2017 + +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 ProGlo 1099 N/A Fees $6200 + +2 XLP 1099 N/A Fees $12400 + +3 XLP Salary N/A Salary $31000 + +3. Filer's Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +# SOURCE NAME CITY, STATE BRIEF DESCRIPTION OF DUTIES + +1 Not Specified Nassau Consulting + +2 Profectus Global Arlington, VA Consulting services + +3 XLP Capital New York, NY Compliance officer + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 TIAA-CREF Retirement Account: TIAA Traditional Yes $1,001 - $15,000 None (or less than +$201) + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +# CREDITOR NAME TYPE OF LIABILITY AMOUNT + +YEAR +INCURRED + +INTEREST +RATE TERM + +1 Navient Loan $100,001 - +$250,000 + +2009 7.42% 30 years +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 2248, ""end"": 2294}, {""label"": ""Value"", ""start"": 2299, ""end"": 2315}, {""label"": ""Amount"", ""start"": 2316, ""end"": 2340}]" +"6","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +Hazelton, Jennifer L. + +Date of Appointment: 01/20/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +Jennifer L. Hazelton + +04/13/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +Sarah E. Taylor + +05/08/2017 + +Other review conducted by +Reviewer: + +eSigned in FDM by: + +Sarah E. Taylor + +05/08/2017 + +U.S. Office of Government Ethics Certification + +1. Filer Positions Held outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 Georgia Production Partnership Atlanta, GA, USA Non -Profit Organiza +tion + +Committee Member 03/2016 Present + +2. Filer's Employment Assets and Income +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Wells Fargo Business Checking (Cash) N/A $50,001 - $100,000 None (or $201) less than +2 Wells Fargo Business Checking 2 (Cash) N/A $1,001 - $15,000 None (or $201) less than +3 Wells Fargo Business Savings (Cash) N/A $1,001 - $15,000 None (or $201) less than +4 Resurgens Bank Checking (Cash) N/A $1,001 - $15,000 None (or $201) less than +5 PayPal Account 1 N/A $1,001 - $15,000 None (or $201) less than +6 PayPal Account 2 N/A $1,001 - $15,000 None (or $201) less than +7 Hazelton Enterprises LLC N/A Income from personal services $74420 +8 Hazelton Enterprises LLC - DBA CROCUS N/A Gross rev. from biz $68028 +9 Presidential Inaugural Committee N/A Salary $9422 +10 U.S. State Department N/A Salary $9125 + +3. Filer Employment Agreements and Arrangements + +EMPLOYER OR OTHER PARTY TO + +# AGREEMENT/ARRANGEMENT CITY/STATE STATUS AND TERMS DATE + +1 NanoLumens Doraville, GA, USA Completing ghostwriting for client: I've been comple +ting ghostwriting work for this client on an hourly b +asis. There is no formal agreement or signed contract + +. + +01/2017 + +2 Sophelle Boston, MA, USA I've been completing ghostwriting for this client: I +have been completing ghostwriting work for this clie +nt on an hourly basis. There is no signed agreement o +r formal arrangement. + +01/2017 + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +# SOURCE NAME CITY, STATE BRIEF DESCRIPTION OF DUTIES + +1 Donald J. Trump for President New York, NY Communications Director for campaign in GA. + +2 Healthy Babies Bright Futures Richmond /Blacksburg, VA Public relations work + +3 NanoLumens Doraville, GA Freelance Public Relations work + +4 Porter Novelli Atlanta, GA Freelance public relations work + +5 Project TENDR Richmond/Blacksburg, VA Public Relations work. Not sure where this +non-profit is based, as the leadership is s +cattered around the country. I think it's V +A, but not sure. + +6 Sophelle Boston, MA Public relations ghostwriting + +7 Spitfire Studios Atlanta, GA Freelance public relations work. + +8 Write2Market Atlanta, GA Freelance Public Relations work + +5. Spouse's Employment Assets and Income + +This report has no reported Assets +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Petrochina No $1,001 - $15,000 None $201) (or less than +2 Vanguard 500 Index Fund No $1,001 - $15,000 None $201) (or less than +3 International Energy Sector Spydr No $1,001 - $15,000 None $201) (or less than +4 Exxon Mobile No $1,001 - $15,000 None $201) (or less than +5 China Unicom No $1,001 - $15,000 None $201) (or less than +6 Morgan Stanley No $1,001 - $15,000 None $201) (or less than +7 Proctor & Gamble No $1,001 - $15,000 None $201) (or less than +8 Petrochina No $1,001 - $15,000 None $201) (or less than +9 T Roew Price Emerging Markets Europe Fund No $1,001 - $15,000 None $201) (or less than +10 Vanguard 500 Index Fund No $1,001 - $15,000 None $201) (or less than +11 Vanguard Windsor II N/A $1,001 - $15,000 None $201) (or less than +12 Eaton Vance Greater India Fund N/A $1,001 - $15,000 None $201) (or less than +13 Emerging Europe Fund N/A $1,001 - $15,000 None $201) (or less than +14 Fidelity Latin America Fund N/A $15,001 - $50,000 None $201) (or less than +15 Fidelity Leveraged Company Fund N/A $15,001 - $50,000 None $201) (or less than +16 Fideltiy Select Defense and Aerospace Fund N/A $15,001 - $50,000 None $201) (or less than +17 Fidelity Emerging Asia Fund N/A $15,001 - $50,000 None $201) (or less than +18 Fidelity Select Energy Fund N/A $15,001 - $50,000 None $201) (or less than +19 Large Cap Value Fund N/A $15,001 - $50,000 None $201) (or less than +20 Wells Fargo Personal Checking (Cash) N/A $1,001 - $15,000 None $201) (or less than +21 Fidelity 500 Index Investor Fund N/A $1,001 - $15,000 None $201) (or less than +22 Fidelity Freedom 2050 Retirement Fund N/A $1,001 - $15,000 None $201) (or less than +23 Energy Sector Spydr N/A $1,001 - $15,000 None $201) (or less than +24 Proctor & Gamble N/A $1,001 - $15,000 None (or less than + +$201) +25 The Southern Company Stock N/A $1,001 - $15,000 None (or less than +$201) + +26 Vanguard 500 Index Investor N/A $1,001 - $15,000 None (or less than +$201) + +7. Transactions + +# DESCRIPTION TYPE DATE AMOUNT + +1 Coca Cola Company Stock sale + +8. Liabilities + +# CREDITOR NAME TYPE OF LIABILITY AMOUNT + +YEAR +INCURRED + +INTEREST +RATE TERM + +1 Small Business Administration Loan $100,001 - +$250,000 + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside the United States Government + +2014 6.5% 10 + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets and Income + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets and Income + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1309, ""end"": 1345}, {""label"": ""Description"", ""start"": 1435, ""end"": 1473}, {""label"": ""Description"", ""start"": 1561, ""end"": 1596}, {""label"": ""Description"", ""start"": 1687, ""end"": 1717}, {""label"": ""Description"", ""start"": 1813, ""end"": 1829}, {""label"": ""Description"", ""start"": 1939, ""end"": 1955}, {""label"": ""Description"", ""start"": 2065, ""end"": 2089}, {""label"": ""Description"", ""start"": 2172, ""end"": 2209}, {""label"": ""Description"", ""start"": 2279, ""end"": 2311}, {""label"": ""Description"", ""start"": 2385, ""end"": 2406}, {""label"": ""Description"", ""start"": 4024, ""end"": 4034}, {""label"": ""Description"", ""start"": 4131, ""end"": 4154}, {""label"": ""Description"", ""start"": 4238, ""end"": 4271}, {""label"": ""Description"", ""start"": 4345, ""end"": 4357}, {""label"": ""Description"", ""start"": 4452, ""end"": 4464}, {""label"": ""Description"", ""start"": 4559, ""end"": 4573}, {""label"": ""Description"", ""start"": 4666, ""end"": 4682}, {""label"": ""Description"", ""start"": 4773, ""end"": 4783}, {""label"": ""Description"", ""start"": 4880, ""end"": 4923}, {""label"": ""Description"", ""start"": 4987, ""end"": 5010}, {""label"": ""Description"", ""start"": 5094, ""end"": 5113}, {""label"": ""Description"", ""start"": 5201, ""end"": 5231}, {""label"": ""Description"", ""start"": 5308, ""end"": 5328}, {""label"": ""Description"", ""start"": 5415, ""end"": 5442}, {""label"": ""Description"", ""start"": 5522, ""end"": 5553}, {""label"": ""Description"", ""start"": 5629, ""end"": 5672}, {""label"": ""Description"", ""start"": 5736, ""end"": 5763}, {""label"": ""Description"", ""start"": 5843, ""end"": 5870}, {""label"": ""Description"", ""start"": 5950, ""end"": 5970}, {""label"": ""Description"", ""start"": 6057, ""end"": 6093}, {""label"": ""Description"", ""start"": 6164, ""end"": 6196}, {""label"": ""Description"", ""start"": 6271, ""end"": 6308}, {""label"": ""Description"", ""start"": 6378, ""end"": 6397}, {""label"": ""Description"", ""start"": 6485, ""end"": 6501}, {""label"": ""Description"", ""start"": 6598, ""end"": 6624}, {""label"": ""Description"", ""start"": 6675, ""end"": 6702}, {""label"": ""Value"", ""start"": 1354, ""end"": 1372}, {""label"": ""Value"", ""start"": 1480, ""end"": 1496}, {""label"": ""Value"", ""start"": 1606, ""end"": 1622}, {""label"": ""Value"", ""start"": 1732, ""end"": 1748}, {""label"": ""Value"", ""start"": 1858, ""end"": 1874}, {""label"": ""Value"", ""start"": 1984, ""end"": 2000}, {""label"": ""Value"", ""start"": 4074, ""end"": 4092}, {""label"": ""Value"", ""start"": 4181, ""end"": 4199}, {""label"": ""Value"", ""start"": 4288, ""end"": 4306}, {""label"": ""Value"", ""start"": 4395, ""end"": 4413}, {""label"": ""Value"", ""start"": 4502, ""end"": 4520}, {""label"": ""Value"", ""start"": 4609, ""end"": 4627}, {""label"": ""Value"", ""start"": 4716, ""end"": 4734}, {""label"": ""Value"", ""start"": 4823, ""end"": 4841}, {""label"": ""Value"", ""start"": 4930, ""end"": 4948}, {""label"": ""Value"", ""start"": 5037, ""end"": 5055}, {""label"": ""Value"", ""start"": 5144, ""end"": 5162}, {""label"": ""Value"", ""start"": 5251, ""end"": 5269}, {""label"": ""Value"", ""start"": 5358, ""end"": 5376}, {""label"": ""Value"", ""start"": 5465, ""end"": 5483}, {""label"": ""Value"", ""start"": 5572, ""end"": 5590}, {""label"": ""Value"", ""start"": 5679, ""end"": 5697}, {""label"": ""Value"", ""start"": 5786, ""end"": 5804}, {""label"": ""Value"", ""start"": 5893, ""end"": 5911}, {""label"": ""Value"", ""start"": 6000, ""end"": 6018}, {""label"": ""Value"", ""start"": 6107, ""end"": 6125}, {""label"": ""Value"", ""start"": 6214, ""end"": 6232}, {""label"": ""Value"", ""start"": 6321, ""end"": 6339}, {""label"": ""Value"", ""start"": 6428, ""end"": 6446}, {""label"": ""Value"", ""start"": 6535, ""end"": 6553}, {""label"": ""Value"", ""start"": 6629, ""end"": 6645}, {""label"": ""Value"", ""start"": 6707, ""end"": 6723}, {""label"": ""Amount"", ""start"": 1405, ""end"": 1430}, {""label"": ""Amount"", ""start"": 1531, ""end"": 1556}, {""label"": ""Amount"", ""start"": 1657, ""end"": 1682}, {""label"": ""Amount"", ""start"": 1783, ""end"": 1808}, {""label"": ""Amount"", ""start"": 1909, ""end"": 1934}, {""label"": ""Amount"", ""start"": 2035, ""end"": 2060}, {""label"": ""Amount"", ""start"": 2161, ""end"": 2167}, {""label"": ""Amount"", ""start"": 2268, ""end"": 2274}, {""label"": ""Amount"", ""start"": 2375, ""end"": 2380}, {""label"": ""Amount"", ""start"": 2481, ""end"": 2486}, {""label"": ""Amount"", ""start"": 4096, ""end"": 4126}, {""label"": ""Amount"", ""start"": 4203, ""end"": 4233}, {""label"": ""Amount"", ""start"": 4310, ""end"": 4340}, {""label"": ""Amount"", ""start"": 4417, ""end"": 4447}, {""label"": ""Amount"", ""start"": 4524, ""end"": 4554}, {""label"": ""Amount"", ""start"": 4631, ""end"": 4661}, {""label"": ""Amount"", ""start"": 4738, ""end"": 4768}, {""label"": ""Amount"", ""start"": 4845, ""end"": 4875}, {""label"": ""Amount"", ""start"": 4952, ""end"": 4982}, {""label"": ""Amount"", ""start"": 5059, ""end"": 5089}, {""label"": ""Amount"", ""start"": 5166, ""end"": 5196}, {""label"": ""Amount"", ""start"": 5273, ""end"": 5303}, {""label"": ""Amount"", ""start"": 5380, ""end"": 5410}, {""label"": ""Amount"", ""start"": 5487, ""end"": 5517}, {""label"": ""Amount"", ""start"": 5594, ""end"": 5624}, {""label"": ""Amount"", ""start"": 5701, ""end"": 5731}, {""label"": ""Amount"", ""start"": 5808, ""end"": 5838}, {""label"": ""Amount"", ""start"": 5915, ""end"": 5945}, {""label"": ""Amount"", ""start"": 6022, ""end"": 6052}, {""label"": ""Amount"", ""start"": 6129, ""end"": 6159}, {""label"": ""Amount"", ""start"": 6236, ""end"": 6266}, {""label"": ""Amount"", ""start"": 6343, ""end"": 6373}, {""label"": ""Amount"", ""start"": 6450, ""end"": 6480}, {""label"": ""Amount"", ""start"": 6557, ""end"": 6594}, {""label"": ""Amount"", ""start"": 6646, ""end"": 6670}, {""label"": ""Amount"", ""start"": 6724, ""end"": 6748}]" +"7","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +Jones, Abigayle K. + +Special Advisor, Department of State, Department of State +Date of Appointment: 01/20/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +Abigayle K. Jones +User ID: + +06/20/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +06/27/2017 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +06/27/2017 + +Reviewer: + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +06/27/2017 + +U.S. Office of Government Ethics Certification +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO +1 A. Jones Enterprises, LLC Lexington, KY, USA Business Enterprise Proprietor Present +2 Credit Corp Cleveland , TN, USA Business Enterprise General Partner 01/2017 +3 Donald J. Trump for President New York , NY, USA Campaign Consultant +4 Trump for America Inc New York , NY, USA Transition Employee 01/2017 + +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF + +1 Real Estate Investment Properties/ Holding -Bassett Av +e + +N/A + +2 Real Estate Investment Properties/ Holding -Paris Pike N/A + +3 JJ Trust No + +3.1 Stock investment- 3M Company MMM Yes + +3.2 Stock- Creditcorp Yes + +3.3 Stock investment- Air Prod & Chem Inc APD Yes + +3.4 Stock Investment Amgen Inc AMGN Yes + +3.5 Stock Investment Automatic Data Processing Inc ADP Yes + +3.6 Stock investment CVS Health Corp Com CVS Yes + +3.7 Stock Investment Microsoft- Corp MSFT Yes + +3.8 Stock Investment Procter and Gamble PG Yes + +3.9 Stock Investment Qualcomm Inc QCOM Yes + +3.10 Stock Investment Raytheon Inc RTN N/A + +3.11 Stock investment Raytheon Co RTN Yes + +3.12 Stock Investment SPDR S&P 500 ETF Trust N/A + +3.13 Stock Investment Texas Instruments TXN Yes + +3.14 Stock Investment Union Pacific UNP N/A + +3.15 Stock Investment United Technologies Corp UTX Yes + +4 A. Jones Enterprises, LLC N/A + +VALUE INCOME TYPE INCOME AMOUNT +$250,001 - $500,000 None $201) (or less than +$500,001 - $1,000,000 None $201) (or less than +$5,000,001 - $25,000,000 None $201) (or less than +$50,001 - $100,000 None $201) (or less than +$5,000,001 - $25,000,000 None $201) (or less than +$50,001 - $100,000 +$50,001 - $100,000 None $201) (or less than +$50,001 - $100,000 None $201) (or less than +$50,001 - $100,000 None $201) (or less than +$50,001 - $100,000 None $201) (or less than +$50,001 - $100,000 +$50,001 - $100,000 None $201) (or less than +$50,001 - $100,000 None $201) (or less than +$50,001 - $100,000 None $201) (or less than +$500,001 - $1,000,000 +$50,001 - $100,000 None $201) (or less than +$50,001 - $100,000 None $201) (or less than +$50,001 - $100,000 None $201) (or less than +$1,000,001 - $5,000,000 None (or less than + +$201) + +4.1 Real Estate Investment Properties/ Holding -Sherman Av +e Lexington,KY + +4.2 Livestock Investments Equine Lexington, KY N/A $250,001 - $500,000 Breeding Fees $7,500 + +N/A $500,001 - $1,000,000 Rent and Royalties $1,001 - $2,500 +5 Tax Liens- Carter Co. KY Yes $1,001 - $15,000 None $201) (or less than +6 Stock investment- Altria Group, Inc-Mo Yes $50,001 - $100,000 None $201) (or less than +7 Stock Investment Emerson Electric Company EMR Yes $50,001 - $100,000 None $201) (or less than +8 Stock Investment Johnson and Johnson JNJ Yes $50,001 - $100,000 None $201) (or less than +9 Stock Investment Walmart Stores INC WMT Yes $50,001 - $100,000 None $201) (or less than +10 401K Yes $50,001 - $100,000 None $201) (or less than +10.1 Dreyfus-Peopx-Stock Investment Yes $15,001 - $50,000 +10.2 Heartland VAL HRVIX- Stock Investment Yes $15,001 - $50,000 None $201) (or less than +11 Stock Investment Alibaba Group Holding Ltd BABA Yes $1,001 - $15,000 None $201) (or less than +12 Cash -Capital Mark N/A $100,001 - $250,000 None (or less than + +$201) + +3. Filer's Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +# SOURCE NAME CITY, STATE BRIEF DESCRIPTION OF DUTIES + +1 A. Jones Enterprises Lexington , KY + +2 Creditcorp Inc Cleveland , TN Board member + +3 Donald J. Trump for President New York , NY Senior Press Advance Representative + +4 Trump for America Inc New York , NY Senior Press Advance Representative + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 BLKRK Equity-MDDVX Stock Investment Yes $15,001 - $50,000 + +2 PUTN Equity-PEYAX Yes $15,001 - $50,000 None (or less than +$201) + +3 Bank Accounts -Cash Capital Mark N/A $100,001 - $250,000 None (or less than +$201) + +4 Cash -Chase Bank N/A $15,001 - $50,000 + +7. Transactions + +This report has no reported Transactions +8. Liabilities + +# CREDITOR NAME TYPE OF LIABILITY AMOUNT + +YEAR +INCURRED + +INTEREST +RATE TERM + +1 Capital Mark Bank Loan $250,001 - +$500,000 + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +2015 3.5% 15 + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1715, ""end"": 1771}, {""label"": ""Description"", ""start"": 1780, ""end"": 1834}, {""label"": ""Description"", ""start"": 1842, ""end"": 1850}, {""label"": ""Description"", ""start"": 1859, ""end"": 1891}, {""label"": ""Description"", ""start"": 1901, ""end"": 1918}, {""label"": ""Description"", ""start"": 1928, ""end"": 1969}, {""label"": ""Description"", ""start"": 1979, ""end"": 2010}, {""label"": ""Description"", ""start"": 2020, ""end"": 2070}, {""label"": ""Description"", ""start"": 2080, ""end"": 2120}, {""label"": ""Description"", ""start"": 2130, ""end"": 2167}, {""label"": ""Description"", ""start"": 2177, ""end"": 2215}, {""label"": ""Description"", ""start"": 2225, ""end"": 2259}, {""label"": ""Description"", ""start"": 2270, ""end"": 2303}, {""label"": ""Description"", ""start"": 2314, ""end"": 2346}, {""label"": ""Description"", ""start"": 2357, ""end"": 2396}, {""label"": ""Description"", ""start"": 2407, ""end"": 2445}, {""label"": ""Description"", ""start"": 2456, ""end"": 2490}, {""label"": ""Description"", ""start"": 2501, ""end"": 2546}, {""label"": ""Description"", ""start"": 2554, ""end"": 2579}, {""label"": ""Description"", ""start"": 3609, ""end"": 3678}, {""label"": ""Description"", ""start"": 3684, ""end"": 3726}, {""label"": ""Description"", ""start"": 3840, ""end"": 3864}, {""label"": ""Description"", ""start"": 3949, ""end"": 3987}, {""label"": ""Description"", ""start"": 4058, ""end"": 4103}, {""label"": ""Description"", ""start"": 4167, ""end"": 4207}, {""label"": ""Description"", ""start"": 4276, ""end"": 4315}, {""label"": ""Description"", ""start"": 4385, ""end"": 4389}, {""label"": ""Description"", ""start"": 4494, ""end"": 4524}, {""label"": ""Description"", ""start"": 4572, ""end"": 4609}, {""label"": ""Description"", ""start"": 4681, ""end"": 4728}, {""label"": ""Description"", ""start"": 4790, ""end"": 4808}, {""label"": ""Description"", ""start"": 5551, ""end"": 5586}, {""label"": ""Description"", ""start"": 5612, ""end"": 5629}, {""label"": ""Description"", ""start"": 5680, ""end"": 5712}, {""label"": ""Description"", ""start"": 5765, ""end"": 5781}, {""label"": ""Value"", ""start"": 2625, ""end"": 2644}, {""label"": ""Value"", ""start"": 2682, ""end"": 2703}, {""label"": ""Value"", ""start"": 2739, ""end"": 2763}, {""label"": ""Value"", ""start"": 2796, ""end"": 2814}, {""label"": ""Value"", ""start"": 2853, ""end"": 2877}, {""label"": ""Value"", ""start"": 2910, ""end"": 2947}, {""label"": ""Value"", ""start"": 2986, ""end"": 3004}, {""label"": ""Value"", ""start"": 3043, ""end"": 3061}, {""label"": ""Value"", ""start"": 3100, ""end"": 3118}, {""label"": ""Value"", ""start"": 3157, ""end"": 3194}, {""label"": ""Value"", ""start"": 3233, ""end"": 3251}, {""label"": ""Value"", ""start"": 3290, ""end"": 3308}, {""label"": ""Value"", ""start"": 3347, ""end"": 3387}, {""label"": ""Value"", ""start"": 3426, ""end"": 3444}, {""label"": ""Value"", ""start"": 3483, ""end"": 3501}, {""label"": ""Value"", ""start"": 3540, ""end"": 3563}, {""label"": ""Value"", ""start"": 3731, ""end"": 3750}, {""label"": ""Value"", ""start"": 3777, ""end"": 3798}, {""label"": ""Value"", ""start"": 3894, ""end"": 3910}, {""label"": ""Value"", ""start"": 4003, ""end"": 4021}, {""label"": ""Value"", ""start"": 4112, ""end"": 4130}, {""label"": ""Value"", ""start"": 4221, ""end"": 4239}, {""label"": ""Value"", ""start"": 4330, ""end"": 4348}, {""label"": ""Value"", ""start"": 4439, ""end"": 4457}, {""label"": ""Value"", ""start"": 4548, ""end"": 4565}, {""label"": ""Value"", ""start"": 4626, ""end"": 4643}, {""label"": ""Value"", ""start"": 4735, ""end"": 4751}, {""label"": ""Value"", ""start"": 4844, ""end"": 4863}, {""label"": ""Value"", ""start"": 5591, ""end"": 5608}, {""label"": ""Value"", ""start"": 5634, ""end"": 5651}, {""label"": ""Value"", ""start"": 5717, ""end"": 5736}, {""label"": ""Value"", ""start"": 5786, ""end"": 5803}, {""label"": ""Amount"", ""start"": 2651, ""end"": 2681}, {""label"": ""Amount"", ""start"": 2708, ""end"": 2738}, {""label"": ""Amount"", ""start"": 2765, ""end"": 2795}, {""label"": ""Amount"", ""start"": 2822, ""end"": 2852}, {""label"": ""Amount"", ""start"": 2879, ""end"": 2909}, {""label"": ""Amount"", ""start"": 2955, ""end"": 2985}, {""label"": ""Amount"", ""start"": 3012, ""end"": 3042}, {""label"": ""Amount"", ""start"": 3069, ""end"": 3099}, {""label"": ""Amount"", ""start"": 3126, ""end"": 3156}, {""label"": ""Amount"", ""start"": 3202, ""end"": 3232}, {""label"": ""Amount"", ""start"": 3259, ""end"": 3289}, {""label"": ""Amount"", ""start"": 3316, ""end"": 3346}, {""label"": ""Amount"", ""start"": 3395, ""end"": 3425}, {""label"": ""Amount"", ""start"": 3452, ""end"": 3482}, {""label"": ""Amount"", ""start"": 3509, ""end"": 3539}, {""label"": ""Amount"", ""start"": 3566, ""end"": 3603}, {""label"": ""Amount"", ""start"": 3765, ""end"": 3771}, {""label"": ""Amount"", ""start"": 3818, ""end"": 3833}, {""label"": ""Amount"", ""start"": 3915, ""end"": 3942}, {""label"": ""Amount"", ""start"": 4024, ""end"": 4051}, {""label"": ""Amount"", ""start"": 4133, ""end"": 4160}, {""label"": ""Amount"", ""start"": 4242, ""end"": 4269}, {""label"": ""Amount"", ""start"": 4351, ""end"": 4378}, {""label"": ""Amount"", ""start"": 4460, ""end"": 4487}, {""label"": ""Amount"", ""start"": 4647, ""end"": 4674}, {""label"": ""Amount"", ""start"": 4756, ""end"": 4783}, {""label"": ""Amount"", ""start"": 4865, ""end"": 4899}, {""label"": ""Amount"", ""start"": 5652, ""end"": 5676}, {""label"": ""Amount"", ""start"": 5737, ""end"": 5761}]" +"9","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +Castro, Robert J. + +Special Advisor to Transition, S/TT, Department of State +Date of Appointment: 01/31/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +Robert J. Castro +User ID: + +02/28/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +03/31/2017 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +03/31/2017 + +Reviewer: + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +03/31/2017 + +U.S. Office of Government Ethics Certification +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 Bob Castro Strategies Bethesda, MD, USA Sole Proprietorship +Consulting + +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +Consultant 01/2000 Present + +1 American Chamber of Commerce in Bahrain N/A Fees $800 + +2 Rental income from property at 3606 Gunston Road N/A Rents $16602 + +3. Filer's Employment Agreements and Arrangements + +EMPLOYER OR OTHER PARTY TO + +# AGREEMENT/ARRANGEMENT CITY/STATE STATUS AND TERMS DATE + +1 LCR Capital Westport, CT, USA Partnership/Consulting agreement: Partnership/Consul +ting agreement for strategy to access new markets, fu +ture residuals for past intros to sales channels & ne +w partners + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +This report has no reported Compensation Exceeding $5,000 + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +06/2016 + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Congressional Federal Credit Union N/A $15,001 - $50,000 None (or less than $201) +2 Wells Fargo Checking, Savings N/A $1,001 - $15,000 None (or less than $201) +3 Citibank IRA Rollover - legacy LM/PAE, ING N/A $1,001 - $15,000 None (or less than $201) +4 BNY Mellon Southern Company Investment Plan N/A $1,001 - $15,000 Dividends $201 - $1,000 +5 Fidelity PAE Pacific Architects IRA Rollover Yes $50,001 - $100,000 Dividends, Gains Capital $2,501 - $5,000 +5.1 FID 500 index inst (FXSIX) Yes $15,001 - $50,000 Dividends, Gains Capital $201 - $1,000 +5.2 PIF MDCP SP400 INST (MPSIX) Yes $15,001 - $50,000 Dividends, Gains Capital $201 - $1,000 +5.3 MPS VALUE R4 (MEIJX) Yes $1,001 - $15,000 Dividends, Gains Capital $201 - $1,000 +5.4 JANUS ENTERPRISE I (JMGRX) Yes $1,001 - $15,000 Dividends, Capital Gains $201 - $1,000 +5.5 FID FREEDOM K 2040 (FFKFX) Yes $1,001 - $15,000 Dividends, Capital Gains $201 - $1,000 +6 RAYMOND JAMES IRA, ROTH, TOD PORTFOLIO ACCOUNTS N/A $250,001 - $500,000 Dividends, Capital Gains $5,001 - $15,000 +6.1 RAYMOND JAMES CASH MANAGEMENT ACCOUNTS N/A $1,001 - $15,000 None (or less than $201) +6.2 CELGENE CORPORATION (CELG) N/A $50,001 - $100,000 Capital Gains $5,001 - $15,000 +6.3 Fidelity advisor real estate income fund class I N/L Yes (FRIRX) $1,001 - $15,000 Dividends, Capital Gains $201 - $1,000 +6.4 HARTFORD BALANCED INCOME FUND CLASS C M/F (HBLCX) Yes $15,001 - $50,000 Dividends, Capital Gains $201 - $1,000 +6.5 Matthews pacific tiger fund investor class N/L (MAPTX Yes ) $15,001 - $50,000 None (or less than $201) +6.6 MFS UTILITIES FUND CLASS A M/F (MMUFX) Yes $1,001 - $15,000 Dividends, Capital Gains $201 - $1,000 +6.7 Neuberger berman genesis fund investor class N/L (NBG Yes NX) $1,001 - $15,000 None (or less than $201) +6.8 PRUDENTIAL JENNISON HEALTH SCIENCES FUND CLASS Z N/L Yes (PHSZX) $15,001 - $50,000 None (or less than $201) +6.9 pimco rae fundamental plus fund class c m/f (PIXCX) Yes $50,001 - $100,000 None (or less than $201) +6.10 PIMCO INCOME FUND CLASS p n/l (PONPX) Yes $15,001 - $50,000 Dividends, Capital Gains $1,001 - $2,500 +6.11 PRUDENTIAL JENNISON GLOBAL OPPORTUNITIES FUND CLASS Z Yes N/L (PRJZX) $15,001 - $50,000 None (or less than $201) +6.12 T ROWE PRICE SMALL CAP VALUE FUND N/L (PONPX) Yes $1,001 - $15,000 None (or less than $201) +6.13 PRUDENTIAL QMA STOCK INDEX FUND CLASS C M/F (PSICX) Yes $15,001 - $50,000 None (or less than $201) +6.14 PRUDENTIAL QMA STOCK INDEX FUND CLASS Z M/F (PSIFX) Yes $1,001 - $15,000 None (or less than $201) +6.15 Pioneer strategic income fund class C M/F (PSRCX) Yes $15,001 - $50,000 Dividends, Capital Gains $1,001 - $2,500 +6.16 Pimco total return fund class P N/L (PTTPX) Yes $1,001 - $15,000 None (or less than $201) +6.17 Federated Strategic Value Dividend Fund Inst Shares I Yes S N/L (SVAIX) $15,001 - $50,000 Dividends, Capital Gains $201 - $1,000 +6.18 TEMPLETON GLOBAL BOND FUND ADVISOR CLASS N/L (TGBAX) Yes $1,001 - $15,000 Dividends, Capital Gains $201 - $1,000 +6.19 VANGUARD HIGH DIVIDEND YIELD INDEX FUND INVESTOR SHAR Yes ES N/L (VHDYX) $1,001 - $15,000 None (or less than $201) +6.20 VANGUARD MID CAP INDEX FUND ADMIRAL SHARES N/L (VIMAX Yes ) $1,001 - $15,000 None (or less than $201) +6.21 IVY HIGH INCOME FUND CLASS Y N/L (WHIYX) Yes $1,001 - $15,000 Dividends, Capital Gains $201 - $1,000 +6.22 IVY SMALL CAP GROWTH FUND CLASS C M/F (WRGCX) Yes $1,001 - $15,000 None (or less than $201) +6.23 IVY SCIENCE & TECHNOLOGY FUND CLASS C M/F (WSTCX) N/A $15,001 - $50,000 None (or less than $201) +7 Prize for Secretary of State Award from AAFSW N/A Cash Award: volunteer $2500 +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +# CREDITOR NAME TYPE OF LIABILITY AMOUNT YEAR INCURRED INTEREST RATE TERM +1 Chase credit card Credit Card/Revolving Charge Account $15,001 - $50,000 2016 14.49% Revolving +2 Discover Card Credit Card/Revolving Charge Account $15,001 - 2016 5.99% revolving + $50,000 +3 NELNET Inc - Student Loan Loan $15,001 - 2004 5.5% 30 yrs + $50,000 +4 State Dept Federal Credit Union S Credit Card/Revolving Charge Account $10,001 - 2015 9.49% Revolving + DFCU $15,000 +5 Wells Fargo Bank, N.A. Mortgage, Alexandria, VA, USA $50,001 - 1999 6.75% 30 yrs + $100,000 + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1406, ""end"": 1445}, {""label"": ""Description"", ""start"": 1463, ""end"": 1511}, {""label"": ""Description"", ""start"": 2258, ""end"": 2292}, {""label"": ""Description"", ""start"": 2392, ""end"": 2421}, {""label"": ""Description"", ""start"": 2526, ""end"": 2575}, {""label"": ""Description"", ""start"": 2660, ""end"": 2710}, {""label"": ""Description"", ""start"": 2783, ""end"": 2827}, {""label"": ""Description"", ""start"": 2908, ""end"": 2934}, {""label"": ""Description"", ""start"": 3031, ""end"": 3058}, {""label"": ""Description"", ""start"": 3154, ""end"": 3174}, {""label"": ""Description"", ""start"": 3278, ""end"": 3304}, {""label"": ""Description"", ""start"": 3419, ""end"": 3445}, {""label"": ""Description"", ""start"": 3560, ""end"": 3607}, {""label"": ""Description"", ""start"": 3704, ""end"": 3742}, {""label"": ""Description"", ""start"": 3856, ""end"": 3882}, {""label"": ""Description"", ""start"": 4000, ""end"": 4052}, {""label"": ""Description"", ""start"": 4057, ""end"": 4064}, {""label"": ""Description"", ""start"": 4141, ""end"": 4190}, {""label"": ""Description"", ""start"": 4282, ""end"": 4335}, {""label"": ""Description"", ""start"": 4340, ""end"": 4341}, {""label"": ""Description"", ""start"": 4434, ""end"": 4472}, {""label"": ""Description"", ""start"": 4575, ""end"": 4628}, {""label"": ""Description"", ""start"": 4633, ""end"": 4636}, {""label"": ""Description"", ""start"": 4727, ""end"": 4779}, {""label"": ""Description"", ""start"": 4784, ""end"": 4791}, {""label"": ""Description"", ""start"": 4879, ""end"": 4930}, {""label"": ""Description"", ""start"": 5031, ""end"": 5068}, {""label"": ""Description"", ""start"": 5174, ""end"": 5227}, {""label"": ""Description"", ""start"": 5232, ""end"": 5243}, {""label"": ""Description"", ""start"": 5326, ""end"": 5371}, {""label"": ""Description"", ""start"": 5478, ""end"": 5529}, {""label"": ""Description"", ""start"": 5630, ""end"": 5681}, {""label"": ""Description"", ""start"": 5782, ""end"": 5831}, {""label"": ""Description"", ""start"": 5925, ""end"": 5968}, {""label"": ""Description"", ""start"": 6077, ""end"": 6130}, {""label"": ""Description"", ""start"": 6135, ""end"": 6148}, {""label"": ""Description"", ""start"": 6218, ""end"": 6270}, {""label"": ""Description"", ""start"": 6359, ""end"": 6412}, {""label"": ""Description"", ""start"": 6417, ""end"": 6431}, {""label"": ""Description"", ""start"": 6511, ""end"": 6564}, {""label"": ""Description"", ""start"": 6569, ""end"": 6570}, {""label"": ""Description"", ""start"": 6663, ""end"": 6703}, {""label"": ""Description"", ""start"": 6804, ""end"": 6849}, {""label"": ""Description"", ""start"": 6956, ""end"": 7005}, {""label"": ""Description"", ""start"": 7108, ""end"": 7153}, {""label"": ""Amount"", ""start"": 1455, ""end"": 1459}, {""label"": ""Amount"", ""start"": 1522, ""end"": 1528}, {""label"": ""Amount"", ""start"": 2362, ""end"": 2386}, {""label"": ""Amount"", ""start"": 2496, ""end"": 2520}, {""label"": ""Amount"", ""start"": 2630, ""end"": 2654}, {""label"": ""Amount"", ""start"": 2764, ""end"": 2777}, {""label"": ""Amount"", ""start"": 2887, ""end"": 2902}, {""label"": ""Amount"", ""start"": 3012, ""end"": 3025}, {""label"": ""Amount"", ""start"": 3135, ""end"": 3148}, {""label"": ""Amount"", ""start"": 3258, ""end"": 3271}, {""label"": ""Amount"", ""start"": 3399, ""end"": 3412}, {""label"": ""Amount"", ""start"": 3540, ""end"": 3553}, {""label"": ""Amount"", ""start"": 3681, ""end"": 3697}, {""label"": ""Amount"", ""start"": 3825, ""end"": 3849}, {""label"": ""Amount"", ""start"": 3977, ""end"": 3993}, {""label"": ""Amount"", ""start"": 4121, ""end"": 4134}, {""label"": ""Amount"", ""start"": 4262, ""end"": 4275}, {""label"": ""Amount"", ""start"": 4403, ""end"": 4427}, {""label"": ""Amount"", ""start"": 4555, ""end"": 4568}, {""label"": ""Amount"", ""start"": 4696, ""end"": 4720}, {""label"": ""Amount"", ""start"": 4848, ""end"": 4872}, {""label"": ""Amount"", ""start"": 5000, ""end"": 5024}, {""label"": ""Amount"", ""start"": 5152, ""end"": 5167}, {""label"": ""Amount"", ""start"": 5295, ""end"": 5319}, {""label"": ""Amount"", ""start"": 5447, ""end"": 5471}, {""label"": ""Amount"", ""start"": 5599, ""end"": 5623}, {""label"": ""Amount"", ""start"": 5751, ""end"": 5775}, {""label"": ""Amount"", ""start"": 5903, ""end"": 5918}, {""label"": ""Amount"", ""start"": 6046, ""end"": 6070}, {""label"": ""Amount"", ""start"": 6198, ""end"": 6211}, {""label"": ""Amount"", ""start"": 6339, ""end"": 6352}, {""label"": ""Amount"", ""start"": 6480, ""end"": 6504}, {""label"": ""Amount"", ""start"": 6632, ""end"": 6656}, {""label"": ""Amount"", ""start"": 6784, ""end"": 6797}, {""label"": ""Amount"", ""start"": 6925, ""end"": 6949}, {""label"": ""Amount"", ""start"": 7077, ""end"": 7101}, {""label"": ""Amount"", ""start"": 7229, ""end"": 7234}, {""label"": ""Value"", ""start"": 2315, ""end"": 2332}, {""label"": ""Value"", ""start"": 2449, ""end"": 2465}, {""label"": ""Value"", ""start"": 2583, ""end"": 2599}, {""label"": ""Value"", ""start"": 2717, ""end"": 2733}, {""label"": ""Value"", ""start"": 2840, ""end"": 2858}, {""label"": ""Value"", ""start"": 2965, ""end"": 2982}, {""label"": ""Value"", ""start"": 3088, ""end"": 3105}, {""label"": ""Value"", ""start"": 3211, ""end"": 3227}, {""label"": ""Value"", ""start"": 3352, ""end"": 3368}, {""label"": ""Value"", ""start"": 3493, ""end"": 3509}, {""label"": ""Value"", ""start"": 3634, ""end"": 3653}, {""label"": ""Value"", ""start"": 3778, ""end"": 3794}, {""label"": ""Value"", ""start"": 3930, ""end"": 3948}, {""label"": ""Value"", ""start"": 4074, ""end"": 4090}, {""label"": ""Value"", ""start"": 4215, ""end"": 4232}, {""label"": ""Value"", ""start"": 4356, ""end"": 4373}, {""label"": ""Value"", ""start"": 4508, ""end"": 4524}, {""label"": ""Value"", ""start"": 4649, ""end"": 4665}, {""label"": ""Value"", ""start"": 4801, ""end"": 4818}, {""label"": ""Value"", ""start"": 4953, ""end"": 4971}, {""label"": ""Value"", ""start"": 5105, ""end"": 5122}, {""label"": ""Value"", ""start"": 5248, ""end"": 5265}, {""label"": ""Value"", ""start"": 5400, ""end"": 5416}, {""label"": ""Value"", ""start"": 5552, ""end"": 5569}, {""label"": ""Value"", ""start"": 5704, ""end"": 5720}, {""label"": ""Value"", ""start"": 5856, ""end"": 5873}, {""label"": ""Value"", ""start"": 5999, ""end"": 6015}, {""label"": ""Value"", ""start"": 6151, ""end"": 6168}, {""label"": ""Value"", ""start"": 6292, ""end"": 6308}, {""label"": ""Value"", ""start"": 6433, ""end"": 6449}, {""label"": ""Value"", ""start"": 6585, ""end"": 6601}, {""label"": ""Value"", ""start"": 6737, ""end"": 6753}, {""label"": ""Value"", ""start"": 6878, ""end"": 6894}, {""label"": ""Value"", ""start"": 7030, ""end"": 7047}]" +"12","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel +Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +Nichols, Ryan C +Advisor, Department of the Interior +Date of Appointment: 05/28/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: + +Special Assistant to the Secretary: (02/05/2017 - 05/28/2017) + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +/s/ Ryan Nichols [electronically signed by Ryan Nichols on 2017-07-07 21:43:01 in FDonline] + +Filed with Extension. Extended for 9 days + +Agency Ethics Official's Opinion - On the basis of information contained in this report, I conclude that the filer is in compliance with applicable laws and regulations +(subject to any comments below) + +/s/ Tia Barner, Ethics Counselor [electronically signed by Tia Barner on 2017-07-10 15:50:27 in FDonline] + +Other review conducted by: + +U.S. Office of Government Ethics Certification +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE ORG TYPE POSITION FROM TO + +1 The Heritage Foundation Washington, DC, US Non -Profit Organization Associate Director, Coalition Relations 08/15/2011 02/03/2017 + +2. Filer's Employment Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 (Mutual Fund Invested) The Heritage Foundation Retirement Plan Washington, DC, US No +1.1 (Mutual Fund) ARTKX-Artisan International Value Investor Yes $1,001 - $15,000 None (or less than $201) +1.2 (Mutual Fund) FAIRX-Fairholme Fd Yes $1,001 - $15,000 None (or less than $201) +1.3 (Mutual Fund) LSBDX-Loomis Sayles Funds - Bond Fund Institutional Cl Yes $1,001 - $15,000 None (or less than $201) +1.4 (Mutual Fund) OAKMX-Oakmark Fund Cl I Yes $1,001 - $15,000 None (or less than $201) +1.5 (Mutual Fund) SLASX-Selected American Shares Inc. Class S Yes $1,001 - $15,000 $201 - $1,000 +1.6 (Mutual Fund) VAIPX-Vanguard Inflation Protected Securities Fund Adm Yes $1,001 - $15,000 None (or less than $201) +1.7 (Mutual Fund) WIIBX-Westcore Plus Bond Fund Insti Class Yes $1,001 - $15,000 None (or less than $201) +2 (Self EI) The Heritage Foundation Washington, DC, US N/A Salary $73,500.00 + +3. Filer's Employment Agreements and Arrangements + +None +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +# SOURCE DESCRIPTION + +1 The Heritage Foundation; Washington, DC, US Salary for full time job as Associate Director of Coalition Relations. + +5. Spouse's Employment Assets and Income + +None + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 (Cash Deposit/Savings) Bank of New York Mellon Pittsburgh, PA, US Health Savings Account N/A $1,001 - $15,000 None (or less than $201) +2 (WLI) Knights of Columbus Whole Life Insurance Policy N/A $1,001 - $15,000 Dividends $201 - $1,000 +3 (Mutual Fund Invested) Edward Jones Single Account Kansas City, MO, US N/A +3.1 (Mutual Fund) IMOAX-Transamerica Asset Allocation - Moderate Portfol Yes $1,001 - $15,000 $201 - $1,000 +4 (Mutual Fund Invested) Roth IRA Maryland Heights, MO, US No +4.1 (Mutual Fund) IMLAX-Transamerica Asset Allocation - Moderate Growth Yes $15,001 - $50,000 $2,501 - $5,000 +4.2 (Mutual Fund) IAAAX-Transamerica Asset Allocation - Growth Portfolio Yes $1,001 - $15,000 $201 - $1,000 + +7. Transactions +(N/A) - Not required for this type of report + +8. Liabilities + +# CREDITOR NAME TYPE OF LIABILITY AMOUNT YEAR INCURRED INTEREST RATE TERM + +1 Statens Laanekassen; Bergen, Hordaland, NO Student Loan $15,001 - $50,000 2004 2.4% 20 + +9. Gifts and Reimbursements + +(N/A) - Not required for this type of report +Endnotes + +PART # ENDNOTE +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable +even if the filer did not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) +positions solely of an honorary nature; (3) positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; +and (5) passive investment interests as a limited partner or non -managing member of a limited liability company. + +2. Filer's Employment Assets and Income + +Part 2 discloses the following: + +Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, +honoraria, scholarships, and prizes) +Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or +(2) produced more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their +underlying holdings as appropriate, deferred compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, +employment, or other income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount +of income is $0 - $200 or if the asset qualifies as an excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), +such as the following: + +Future employment +Leave of absence +Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current +employer) +Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan +Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share +of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting +period. The filer discloses payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the +source made its payment to the filer's employer and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the +services for which the client is paying. + +5. Spouse's Employment Assets and Income +Part 5 discloses the following: + +Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and +partnership share) +Sources of honoraria for the filer's spouse greater than $200 during the reporting period +Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater +than $1,000 or (2) produced more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans +/accounts and their underlying holdings as appropriate, deferred compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, +employment, or other income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of +income is $0 - $200 or if the asset qualifies as an excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding +honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment +income during the reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and +dependent children. This section does not include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) +income or retirement benefits associated with United States Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money +market accounts) at a single financial institution with a value of $5,000 or less (unless more than $200 of income was produced). Additional exceptions apply. Note: The +type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child +during reporting period. This section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., +checking, savings, CDs, money market accounts) and money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings +Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the +following types of liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, +household furniture, or appliances, unless the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the +outstanding liability did not exceed $10,000 at the end of the reporting period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not +include the following items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local +governments; (3) bequests and other forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) +gifts of hospitality (food, lodging, entertainment) at the donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children +totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act +of 2012 (Pub. L. 112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The +primary use of the information on this report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may +also be disclosed upon request to any requesting person in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect +applications for public access of your own form upon request. Additional disclosures of the information on this report may be made: (1) to any requesting person, subject +to the limitation contained in section 208(d)(1) of title 18, any determination granting an exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a +Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential violations of law or regulation; (3) to another Federal +agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with a judge -issued subpoena; (4) to a +source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records Administration or +the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a +party to litigation or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new +office, department or agency when an employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in +response to an inquiry made on behalf of an individual who is the subject of the record; (10) to contractors and other non -Government employees working on a contract, +service or assignment for the Federal Government when necessary to accomplish a function related to an OGE Government -wide system of records; and (11) on the +OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an individual nominated by the President to a position requiring +Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and +completing the form. Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, +to the Program Counsel, U.S. Office of Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information +unless it displays a currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e). +Reviewer Comments and Submission History +for Ryan Nichols + +Tia Barner + +07/06/2017 13:53:53 +Extension granted to 07/07/2017 + +Tia Barner + +06/27/2017 14:42:29 +Extension granted to 07/05/2017","[{""label"": ""Description"", ""start"": 1526, ""end"": 1607}, {""label"": ""Description"", ""start"": 1617, ""end"": 1673}, {""label"": ""Description"", ""start"": 1766, ""end"": 1798}, {""label"": ""Description"", ""start"": 1915, ""end"": 1983}, {""label"": ""Description"", ""start"": 2064, ""end"": 2101}, {""label"": ""Description"", ""start"": 2213, ""end"": 2270}, {""label"": ""Description"", ""start"": 2351, ""end"": 2419}, {""label"": ""Description"", ""start"": 2500, ""end"": 2555}, {""label"": ""Description"", ""start"": 2649, ""end"": 2701}, {""label"": ""Description"", ""start"": 3265, ""end"": 3353}, {""label"": ""Description"", ""start"": 3421, ""end"": 3474}, {""label"": ""Description"", ""start"": 3566, ""end"": 3636}, {""label"": ""Description"", ""start"": 3665, ""end"": 3733}, {""label"": ""Description"", ""start"": 3810, ""end"": 3866}, {""label"": ""Description"", ""start"": 3908, ""end"": 3975}, {""label"": ""Description"", ""start"": 4055, ""end"": 4123}, {""label"": ""Value"", ""start"": 1705, ""end"": 1721}, {""label"": ""Value"", ""start"": 1854, ""end"": 1870}, {""label"": ""Value"", ""start"": 2003, ""end"": 2019}, {""label"": ""Value"", ""start"": 2152, ""end"": 2168}, {""label"": ""Value"", ""start"": 2301, ""end"": 2317}, {""label"": ""Value"", ""start"": 2439, ""end"": 2455}, {""label"": ""Value"", ""start"": 2588, ""end"": 2604}, {""label"": ""Value"", ""start"": 3359, ""end"": 3375}, {""label"": ""Value"", ""start"": 3515, ""end"": 3531}, {""label"": ""Value"", ""start"": 3759, ""end"": 3775}, {""label"": ""Value"", ""start"": 4002, ""end"": 4019}, {""label"": ""Value"", ""start"": 4149, ""end"": 4165}, {""label"": ""Amount"", ""start"": 1736, ""end"": 1760}, {""label"": ""Amount"", ""start"": 1885, ""end"": 1909}, {""label"": ""Amount"", ""start"": 2034, ""end"": 2058}, {""label"": ""Amount"", ""start"": 2183, ""end"": 2207}, {""label"": ""Amount"", ""start"": 2332, ""end"": 2345}, {""label"": ""Amount"", ""start"": 2470, ""end"": 2494}, {""label"": ""Amount"", ""start"": 2619, ""end"": 2643}, {""label"": ""Amount"", ""start"": 2768, ""end"": 2778}, {""label"": ""Amount"", ""start"": 3391, ""end"": 3415}, {""label"": ""Amount"", ""start"": 3547, ""end"": 3560}, {""label"": ""Amount"", ""start"": 3791, ""end"": 3804}, {""label"": ""Amount"", ""start"": 4034, ""end"": 4049}, {""label"": ""Amount"", ""start"": 4181, ""end"": 4194}]" +"16","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +Hutchison, John W. + +Special Assistant to the Secretary, Secretary of State, US Department of State +Date of Appointment: 01/25/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +John W. Hutchison +User ID: + +02/22/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +03/13/2017 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +03/02/2017 + +Reviewer: + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +03/13/2017 + +U.S. Office of Government Ethics Certification +1. Filer's Positions Held Outside United States Government +This report has no reported Positions Held Outside United States Government + +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Donald J Trump for President, Inc N/A Salary $26800 + +2 Trump for America, Inc N/A Salary $12635 + +3. Filer's Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +# SOURCE NAME CITY, STATE BRIEF DESCRIPTION OF DUTIES + +1 Donald J Trump for President New York, NY Advance Lead for the Presidential Campaign + +2 Trump for America New York, NY Worked on Transiton Team + +5. Spouse's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Bureau Veritas 6. Other Assets and Income N/A Salary +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Bank of America checking & savings accounts N/A $1,001 - $15,000 None (or less than $201) +2 Chase Bank Account N/A $1,001 - $15,000 None (or less than $201) +3 Bank of America Stock N/A $15,001 - $50,000 Dividends $201 - $1,000 +4 Charles Schwab Money Market N/A $15,001 - $50,000 None (or less than $201) +5 Merck & Company Stock N/A $1,001 - $15,000 None (or less than $201) +6 Walt Disney Pension N/A $100,001 - $250,000 None (or less than $201) +7 Disney 401K - VANG INST INDEX PLUS (VIIIX) Yes $50,001 - $100,000 None (or less than $201) +8 Disney 401K - FID CAP APP UNITIZED Yes $50,001 - $100,000 None (or less than $201) +9 Disney 401K - DISNEY STOCK -ESOP (DIS) N/A $15,001 - $50,000 None (or less than $201) +10 Schwab SEP - SCHWAB US BROAD MARKET ETF Yes $1,001 - $15,000 None (or less than + +$201) +11 Schwab SEP - SCHWAB GNMA FUND Yes $1,001 - $15,000 None $201) (or less than +12 Schwab SEP - JANUS GROWTH & INCM CL T Yes $15,001 - $50,000 None $201) (or less than +13 Schwab Roth - JANUS GLOBAL SELECT T Yes $1,001 - $15,000 None $201) (or less than +14 Schwab Roth - JANUS GROWTH & INCM CL T Yes $1,001 - $15,000 None $201) (or less than +15 Schwab Roth - JANUS TWENTY FD CL T Yes $1,001 - $15,000 None $201) (or less than +16 Schwab IRA/Roth - Amer Balanced Fund R4 Yes $50,001 - $100,000 None $201) (or less than +17 Schwab IRA/Roth - Washington Mutual Inv Fund Yes $15,001 - $50,000 None $201) (or less than +18 Schwab IRA/Roth - The Growth Fund of America Yes $50,001 - $100,000 None $201) (or less than +19 Schwab IRA/Roth - American Funds Income Fnd R3 Yes $1,001 - $15,000 None $201) (or less than +20 Schwab IRA/Roth - ARTISAN INTL VALUE FUND INV Yes $15,001 - $50,000 None $201) (or less than +21 Schwab IRA/Roth - ARTISAN INTL VALUE FUND INV Yes $1,001 - $15,000 None $201) (or less than +22 Schwab IRA/Roth - BAIRD CORE PLUS BD INV Yes $1,001 - $15,000 None $201) (or less than +23 Schwab IRA/Roth - EATON VANCE FLOATING RATE ADVANTAGE Yes A $1,001 - $15,000 None $201) (or less than +24 Schwab IRA/Roth - LAUDUS U.S. LARGE CAP GROWTH FUND Yes $1,001 - $15,000 None $201) (or less than +25 Schwab IRA/Roth - LAZARD INTL EQUITY PORTFOLIO OPEN S Yes HARE $15,001 - $50,000 None $201) (or less than +26 Schwab IRA/Roth - METROPOLITAN WEST TOTAL RETURN BOND Yes M $15,001 - $50,000 None $201) (or less than +27 Schwab IRA/Roth - OAKMARK INTL SMALL CAP FUND INV Yes $1,001 - $15,000 None $201) (or less than +28 Schwab IRA/Roth - OPPENHEIMER INTL SMALL MID COMPANY Yes A $1,001 - $15,000 None $201) (or less than +29 Schwab IRA/Roth - PIMCO INCM CL D Yes $1,001 - $15,000 None $201) (or less than +30 Schwab IRA/Roth - PRUDENTIAL HIGH YIELD FUND CL Z Yes $1,001 - $15,000 None $201) (or less than +31 Schwab IRA/Roth - PRUDENTIAL TOTAL RETURN BD Z Yes $15,001 - $50,000 None $201) (or less than +32 Schwab IRA/Roth - SCHWAB CORE EQUITY FUND Yes $15,001 - $50,000 None $201) (or less than +33 Schwab IRA/Roth - SCHWAB DIVIDEND EQUITY FUND Yes $15,001 - $50,000 None $201) (or less than +34 Schwab IRA/Roth - SCHWAB FUNDAMENTAL US LARGE CO X INDE Yes $15,001 - $50,000 None $201) (or less than +35 Schwab IRA/Roth - SCHWAB FUNDAMENTAL US SMALL CO X INDE Yes $15,001 - $50,000 None $201) (or less than +36 Schwab IRA/Roth - SCHWAB LARGE -CAP GROWTH FUND Yes $1,001 - $15,000 None (or less than + +$201) +37 Schwab IRA/Roth - SCHWAB SMALL -CAP EQUITY FUND Yes $1,001 - $15,000 None $201) (or less than +38 Schwab IRA/Roth - TEMPLETON FOREIGN FUND CL A Yes $1,001 - $15,000 None $201) (or less than +39 Schwab IRA/Roth - TIAA CREF INTL EQUITY RETAIL Yes $1,001 - $15,000 None $201) (or less than +40 Schwab IRA/Roth - VIRTUS EMRG MKTS OPPTY FD CL A Yes $1,001 - $15,000 None $201) (or less than +41 Schwab IRA/Roth - WESTERN ASSET CORE BD FD I Yes $15,001 - $50,000 None $201) (or less than +42 IBM 401K -Fidelity Magellan Yes $1,001 - $15,000 None $201) (or less than +43 IBM 401K -Fidelity Growth & Income Yes $15,001 - $50,000 None $201) (or less than +44 IBM 401K -Fidelity Blue Chip Growth Yes $15,001 - $50,000 None $201) (or less than +45 IBM Pension N/A $50,001 - $100,000 None $201) (or less than +46 RGP 401K - PIMCO RP 2025 ADM Yes $50,001 - $100,000 None $201) (or less than +47 US Savings Bonds N/A $1,001 - $15,000 None $201) (or less than +48 Vaco 401K -Mass Mutual MM RetireSMART Moderate Fund Yes $1,001 - $15,000 None (or less than + +$201) + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 2346, ""end"": 2389}, {""label"": ""Description"", ""start"": 2500, ""end"": 2518}, {""label"": ""Description"", ""start"": 2654, ""end"": 2675}, {""label"": ""Description"", ""start"": 2797, ""end"": 2824}, {""label"": ""Description"", ""start"": 2951, ""end"": 2972}, {""label"": ""Description"", ""start"": 3105, ""end"": 3124}, {""label"": ""Description"", ""start"": 3259, ""end"": 3301}, {""label"": ""Description"", ""start"": 3413, ""end"": 3447}, {""label"": ""Description"", ""start"": 3567, ""end"": 3605}, {""label"": ""Description"", ""start"": 3721, ""end"": 3760}, {""label"": ""Description"", ""start"": 3835, ""end"": 3864}, {""label"": ""Description"", ""start"": 3962, ""end"": 3999}, {""label"": ""Description"", ""start"": 4089, ""end"": 4124}, {""label"": ""Description"", ""start"": 4216, ""end"": 4254}, {""label"": ""Description"", ""start"": 4343, ""end"": 4377}, {""label"": ""Description"", ""start"": 4470, ""end"": 4509}, {""label"": ""Description"", ""start"": 4597, ""end"": 4641}, {""label"": ""Description"", ""start"": 4724, ""end"": 4768}, {""label"": ""Description"", ""start"": 4851, ""end"": 4897}, {""label"": ""Description"", ""start"": 4978, ""end"": 5023}, {""label"": ""Description"", ""start"": 5105, ""end"": 5150}, {""label"": ""Description"", ""start"": 5232, ""end"": 5272}, {""label"": ""Description"", ""start"": 5359, ""end"": 5412}, {""label"": ""Description"", ""start"": 5417, ""end"": 5418}, {""label"": ""Description"", ""start"": 5486, ""end"": 5537}, {""label"": ""Description"", ""start"": 5613, ""end"": 5666}, {""label"": ""Description"", ""start"": 5671, ""end"": 5675}, {""label"": ""Description"", ""start"": 5740, ""end"": 5793}, {""label"": ""Description"", ""start"": 5798, ""end"": 5799}, {""label"": ""Description"", ""start"": 5867, ""end"": 5916}, {""label"": ""Description"", ""start"": 5994, ""end"": 6046}, {""label"": ""Description"", ""start"": 6051, ""end"": 6052}, {""label"": ""Description"", ""start"": 6121, ""end"": 6154}, {""label"": ""Description"", ""start"": 6248, ""end"": 6313}, {""label"": ""Description"", ""start"": 6375, ""end"": 6421}, {""label"": ""Description"", ""start"": 6502, ""end"": 6543}, {""label"": ""Description"", ""start"": 6629, ""end"": 6674}, {""label"": ""Description"", ""start"": 6756, ""end"": 6824}, {""label"": ""Description"", ""start"": 6883, ""end"": 6951}, {""label"": ""Description"", ""start"": 7010, ""end"": 7057}, {""label"": ""Description"", ""start"": 7144, ""end"": 7191}, {""label"": ""Description"", ""start"": 7255, ""end"": 7300}, {""label"": ""Description"", ""start"": 7366, ""end"": 7412}, {""label"": ""Description"", ""start"": 7477, ""end"": 7525}, {""label"": ""Description"", ""start"": 7588, ""end"": 7632}, {""label"": ""Description"", ""start"": 7699, ""end"": 7726}, {""label"": ""Description"", ""start"": 7810, ""end"": 7844}, {""label"": ""Description"", ""start"": 7921, ""end"": 7956}, {""label"": ""Description"", ""start"": 8032, ""end"": 8043}, {""label"": ""Description"", ""start"": 8143, ""end"": 8171}, {""label"": ""Description"", ""start"": 8254, ""end"": 8270}, {""label"": ""Description"", ""start"": 8365, ""end"": 8416}, {""label"": ""Value"", ""start"": 2396, ""end"": 2412}, {""label"": ""Value"", ""start"": 2550, ""end"": 2566}, {""label"": ""Value"", ""start"": 2704, ""end"": 2721}, {""label"": ""Value"", ""start"": 2847, ""end"": 2864}, {""label"": ""Value"", ""start"": 3001, ""end"": 3017}, {""label"": ""Value"", ""start"": 3155, ""end"": 3174}, {""label"": ""Value"", ""start"": 3309, ""end"": 3327}, {""label"": ""Value"", ""start"": 3463, ""end"": 3481}, {""label"": ""Value"", ""start"": 3617, ""end"": 3634}, {""label"": ""Value"", ""start"": 3771, ""end"": 3787}, {""label"": ""Value"", ""start"": 3909, ""end"": 3927}, {""label"": ""Value"", ""start"": 4036, ""end"": 4054}, {""label"": ""Value"", ""start"": 4163, ""end"": 4181}, {""label"": ""Value"", ""start"": 4290, ""end"": 4308}, {""label"": ""Value"", ""start"": 4417, ""end"": 4435}, {""label"": ""Value"", ""start"": 4544, ""end"": 4563}, {""label"": ""Value"", ""start"": 4671, ""end"": 4689}, {""label"": ""Value"", ""start"": 4798, ""end"": 4817}, {""label"": ""Value"", ""start"": 4925, ""end"": 4943}, {""label"": ""Value"", ""start"": 5052, ""end"": 5070}, {""label"": ""Value"", ""start"": 5179, ""end"": 5197}, {""label"": ""Value"", ""start"": 5306, ""end"": 5324}, {""label"": ""Value"", ""start"": 5433, ""end"": 5451}, {""label"": ""Value"", ""start"": 5560, ""end"": 5578}, {""label"": ""Value"", ""start"": 5687, ""end"": 5705}, {""label"": ""Value"", ""start"": 5814, ""end"": 5832}, {""label"": ""Value"", ""start"": 5941, ""end"": 5959}, {""label"": ""Value"", ""start"": 6068, ""end"": 6086}, {""label"": ""Value"", ""start"": 6195, ""end"": 6213}, {""label"": ""Value"", ""start"": 6322, ""end"": 6340}, {""label"": ""Value"", ""start"": 6449, ""end"": 6467}, {""label"": ""Value"", ""start"": 6576, ""end"": 6594}, {""label"": ""Value"", ""start"": 6703, ""end"": 6721}, {""label"": ""Value"", ""start"": 6830, ""end"": 6848}, {""label"": ""Value"", ""start"": 6957, ""end"": 6975}, {""label"": ""Value"", ""start"": 7084, ""end"": 7102}, {""label"": ""Value"", ""start"": 7202, ""end"": 7220}, {""label"": ""Value"", ""start"": 7313, ""end"": 7331}, {""label"": ""Value"", ""start"": 7424, ""end"": 7442}, {""label"": ""Value"", ""start"": 7535, ""end"": 7553}, {""label"": ""Value"", ""start"": 7646, ""end"": 7664}, {""label"": ""Value"", ""start"": 7757, ""end"": 7775}, {""label"": ""Value"", ""start"": 7868, ""end"": 7886}, {""label"": ""Value"", ""start"": 7979, ""end"": 7997}, {""label"": ""Value"", ""start"": 8090, ""end"": 8109}, {""label"": ""Value"", ""start"": 8201, ""end"": 8220}, {""label"": ""Value"", ""start"": 8312, ""end"": 8330}, {""label"": ""Value"", ""start"": 8423, ""end"": 8441}, {""label"": ""Amount"", ""start"": 2430, ""end"": 2454}, {""label"": ""Amount"", ""start"": 2584, ""end"": 2608}, {""label"": ""Amount"", ""start"": 2738, ""end"": 2751}, {""label"": ""Amount"", ""start"": 2881, ""end"": 2905}, {""label"": ""Amount"", ""start"": 3035, ""end"": 3059}, {""label"": ""Amount"", ""start"": 3189, ""end"": 3213}, {""label"": ""Amount"", ""start"": 3343, ""end"": 3367}, {""label"": ""Amount"", ""start"": 3497, ""end"": 3521}, {""label"": ""Amount"", ""start"": 3651, ""end"": 3675}, {""label"": ""Amount"", ""start"": 3805, ""end"": 3830}, {""label"": ""Amount"", ""start"": 3930, ""end"": 3957}, {""label"": ""Amount"", ""start"": 4057, ""end"": 4084}, {""label"": ""Amount"", ""start"": 4184, ""end"": 4211}, {""label"": ""Amount"", ""start"": 4311, ""end"": 4338}, {""label"": ""Amount"", ""start"": 4438, ""end"": 4465}, {""label"": ""Amount"", ""start"": 4565, ""end"": 4592}, {""label"": ""Amount"", ""start"": 4692, ""end"": 4719}, {""label"": ""Amount"", ""start"": 4819, ""end"": 4846}, {""label"": ""Amount"", ""start"": 4946, ""end"": 4973}, {""label"": ""Amount"", ""start"": 5073, ""end"": 5100}, {""label"": ""Amount"", ""start"": 5200, ""end"": 5227}, {""label"": ""Amount"", ""start"": 5327, ""end"": 5354}, {""label"": ""Amount"", ""start"": 5454, ""end"": 5481}, {""label"": ""Amount"", ""start"": 5581, ""end"": 5608}, {""label"": ""Amount"", ""start"": 5708, ""end"": 5735}, {""label"": ""Amount"", ""start"": 5835, ""end"": 5862}, {""label"": ""Amount"", ""start"": 5962, ""end"": 5989}, {""label"": ""Amount"", ""start"": 6089, ""end"": 6116}, {""label"": ""Amount"", ""start"": 6216, ""end"": 6243}, {""label"": ""Amount"", ""start"": 6343, ""end"": 6370}, {""label"": ""Amount"", ""start"": 6470, ""end"": 6497}, {""label"": ""Amount"", ""start"": 6597, ""end"": 6624}, {""label"": ""Amount"", ""start"": 6724, ""end"": 6751}, {""label"": ""Amount"", ""start"": 6851, ""end"": 6878}, {""label"": ""Amount"", ""start"": 6978, ""end"": 7005}, {""label"": ""Amount"", ""start"": 7105, ""end"": 7139}, {""label"": ""Amount"", ""start"": 7223, ""end"": 7250}, {""label"": ""Amount"", ""start"": 7334, ""end"": 7361}, {""label"": ""Amount"", ""start"": 7445, ""end"": 7472}, {""label"": ""Amount"", ""start"": 7556, ""end"": 7583}, {""label"": ""Amount"", ""start"": 7667, ""end"": 7694}, {""label"": ""Amount"", ""start"": 7778, ""end"": 7805}, {""label"": ""Amount"", ""start"": 7889, ""end"": 7916}, {""label"": ""Amount"", ""start"": 8000, ""end"": 8027}, {""label"": ""Amount"", ""start"": 8111, ""end"": 8138}, {""label"": ""Amount"", ""start"": 8222, ""end"": 8249}, {""label"": ""Amount"", ""start"": 8333, ""end"": 8360}, {""label"": ""Amount"", ""start"": 8444, ""end"": 8478}]" +"23","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +CHEWNING, ERIC D. + +Deputy Assistant Secretary of Defense, Department of Defense, Office of the Under Secretary +Date of Appointment: 10/30/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +ERIC D. CHEWNING +User ID: EAD1C46FC22A6D9B +12/14/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +Dani Irvine +User ID: 693F1B775EA98F74 +01/31/2018 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +ELLEN LORD +User ID: 3C0F7DBD72FA1FF4 +12/21/2017 + +U.S. Office of Government Ethics Certification + +Comments of Reviewing Officials (public annotations): + +PART # REFERENCE COMMENT + +6. 4 College Savings 529 Plan - Child 1 (12/21/17, Irvine, Dani): Virginia + +6. 5 College Savings 529 Plan - Child 2 (12/21/17, Irvine, Dani): Virginia +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 McKinsey and Company Washington, DC, USA Business Enterprise General Partner 01/2014 10/2017 + +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE +1 US Domestic Bank A IRA Rollover 1 N/A +1.1 Discover Financial Services (DFS) N/A $1,001 - $15,000 +1.2 Morgan Stanley (MS) N/A $1,001 - $15,000 +2 McKinsey and Company Profit Sharing Retirement Plan ( Yes PSRP) and Money Purchase Pension Plan (MPPP) $100,001 - $250,000 +2.1 McKinsey Investment Office - Special Situations Fund Yes $50,001 - $100,000 +2.2 McKinsey Investment Office - Special Situations - Enh Yes anced Liquidity USD Fund $15,001 - $50,000 +2.3 McKinsey Investment Officce - Active Global Equities Yes Fund $15,001 - $50,000 +2.4 McKinsey Investment Office - Passive US Equities Fund Yes None (or less than $1,001) +3 McKinsey and Company Partner Cash Balance Plan - Reti Yes rement $15,001 - $50,000 +4 McKinsey & Company Capital N/A None (or less than $1,001) +5 McKinsey & Company Salary & Bonus N/A + +3. Filer's Employment Agreements and Arrangements + +INCOME TYPE INCOME AMOUNT + +Dividends, Capital +Gains + +Dividends, Capital +Gains, Interest + +Dividends, Capital +Gains, Interest + +Dividends, Capital +Gains + +Dividends, Capital +Gains + +Dividends, Capital +Gains, Interest + +Proceeds from sale $152,000 + +None (or less than +$201) + +None (or less than +$201) + +None (or less than +$201) + +$5,001 - $15,000 + +$2,501 - $5,000 + +$2,501 - $5,000 + +$5,001 - $15,000 + +$2,501 - $5,000 + +$201 - $1,000 + +Salary $1459640 + +EMPLOYER OR OTHER PARTY TO + +# AGREEMENT/ARRANGEMENT CITY/STATE STATUS AND TERMS DATE + +1 McKinsey & Company Washington, DC, USA Continuing participation in Employee Benefit Plan: I +will continue to participate in Partner Cash Balance +Plan. The plan sponsor will not make further contrib +utions after my separation + +2 McKinsey & Company Washington, DC, USA Continuing participation in Employee Benefit Plan: I +will continue to participate in McKinsey PSRP and MP +PP. The plan sponsor will not make further contribut +ions after my separation + +3 McKinsey and Company Washington, DC, USA Continuation of payments by former employer: Pursuan +t to employment agreement - to receive performance-ba +sed compensation for performance through 10//17 on pr +e -determined schedule + +10/2017 + +10/2017 + +10/2017 + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +# SOURCE NAME CITY, STATE BRIEF DESCRIPTION OF DUTIES + +1 J.F. Lehman and Company New York, NY Provided consulting services through a cont +ract held by McKinsey and Company, my emplo +yer + +2 Leidos Reston, VA Provided consulting services through a cont +ract held by McKinsey and Company, my emplo +yer + +3 Lockheed Martin Corporation Bethesda, MD Provided consulting services through a cont +ract held by McKinsey and Company, my emplo +yer + +4 Northrop Grumman Falls Church, VA Provided consulting services through a cont +ract held by McKinsey and Company, my emplo +yer + +5 United Technologies Corporation Hartford, CT Provided consulting services through a cont +ract held by McKinsey and Company, my emplo +yer + +5. Spouse's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 US Domestic Bank A IRA Rollover 2 N/A Dividends, Capital Gains, Interest +1.1 American Century SHDUR INFL PROT BD Fund Class I Yes $1,001 - $15,000 None (or less than $201) +1.2 UBS Bank USA Deposit Account N/A $1,001 - $15,000 None (or less than $201) +1.3 JP Morgan Treasury and Agency Fund Class I Yes $1,001 - $15,000 None (or less than $201) +1.4 Oppenheimer SR Floating Rate Fund Class Y Yes $1,001 - $15,000 Dividends, Capital Gains, Interest $1,001 - $2,500 +1.5 PIMCO Real Return Fund Class P Yes $1,001 - $15,000 None (or less than $201) +1.6 Prudential Short -Term Corporate Bond Fund INC Z Yes $15,001 - $50,000 Dividends, Capital Gains, Interest $1,001 - $2,500 +1.7 Amana Income Fund Class Institutional Yes $1,001 - $15,000 None (or less than $201) +1.8 Blackrock High Equity Income Fund Class INSTL Yes $1,001 - $15,000 None (or less than $201) +1.9 Dodge & Cox Stock Fund Yes $1,001 - $15,000 None (or less than $201) +1.10 Horizon Spin -Off and Corporate Restructuring Fund Cla Yes ss I $1,001 - $15,000 None (or less than $201) +1.11 Invesco Small Cap Discovery Fund Class Y Yes $1,001 - $15,000 None (or less than $201) +1.12 John Hancock Fundamental Large Cap Core Fund Class I Yes $1,001 - $15,000 None (or less than $201) +1.13 Keeley Small Cap Value Fund Class I Yes $1,001 - $15,000 None (or less than $201) +1.14 Linde Hansen Contrarian Value Fund CL I Yes $1,001 - $15,000 None (or less than $201) +1.15 MFS Value Fund Class I Yes $15,001 - $50,000 Dividends, Capital Gains $1,001 - $2,500 +1.16 The Growth Fund of America Fund Class F2 Yes $1,001 - $15,000 None (or less than $201) +1.17 Vanguard 500 Index Fund Admiral Yes $1,001 - $15,000 Dividends, Capital Gains $1,001 - $2,500 +1.18 Vanguard Mid -Cap Index Fund Admiral Yes $1,001 - $15,000 None (or less than $201) +1.19 Virtus Contrarian Value Fund Class I Yes $1,001 - $15,000 None (or less than $201) +1.20 American Century Emerging Markets Fund Class I Yes $1,001 - $15,000 None (or less than $201) +1.21 Vanguard FTSE ALL-WLD EX -US INX FND CL Admiral Yes $1,001 - $15,000 None (or less than $201) +1.22 First Eagle Global Funds Class I Yes $15,001 - $50,000 None (or less than $201) +2 Marriott International (MAR) Retirement Savings Plan Yes $100,001 - $250,000 Dividends, Capital Gains, Interest $15,001 - $50,000 +2.1 Vanguard Retirement 2035 Yes $100,001 - $250,000 Dividends, Capital Gains, Interest $15,001 - $50,000 +3 Fidelity - Investment Account N/A $500,001 - $1,000,000 Dividends, Capital Gains $50,001 - $100,000 +3.1 Marriott International Restricted Stock (MARRSU) N/A $500,001 - $1,000,000 None (or less than $201) +3.2 Cash Account (FCASH) N/A $15,001 - $50,000 None (or less than $201) +4 Marriott International (MAR) - Salary and Bonus N/A Salary + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 US Domestic Bank A Investment Account N/A +1.1 Guggenheim High Yield Fund Class Institutional Yes $1,001 - $15,000 Dividends, Capital Gains $201 - $1,000 +1.2 Vanguard Intermediate Term Tax Exempt Fund Admiral Yes $15,001 - $50,000 Dividends, Capital Gains, Interest $201 - $1,000 +1.3 Vanguard Limited Term Tax -Exempt Fund Admiral Yes $15,001 - $50,000 Dividends, Capital Gains, Interest $201 - $1,000 +1.4 Vanguard Short -Term Corp BD IDX Admiral Yes $1,001 - $15,000 Dividends, Capital Gains, Interest $201 - $1,000 +1.5 Vanguard 500 Index Fund Admiral Yes $15,001 - $50,000 Dividends, Capital Gains $201 - $1,000 +1.6 Vanguard Mid -Cap Index Fund Admiral Yes $15,001 - $50,000 Dividends, Capital Gains $201 - $1,000 +1.7 Vanguard Small Cap Index Fund Admiral Yes $15,001 - $50,000 Dividends, Capital Gains $201 - $1,000 +1.8 Vanguard Total Stock Market Index ADM Yes $15,001 - $50,000 Dividends, Capital Gains $201 - $1,000 +1.9 Fidelity Advisor Biotechnology Fund Class I Yes $1,001 - $15,000 Dividends, Capital Gains $201 - $1,000 +1.10 T. Rowe Price Global Tech Fund Yes $1,001 - $15,000 None (or less than $201) +1.11 Vanguard Emerging Markets Stock Index Fund Admiral Yes $1,001 - $15,000 None (or less than + +$201) +1.12 Vanguard FTSE ALL-WLD EX -US IDX FND CL Admiral Yes $15,001 - $50,000 Dividends, Capital Gains, Interest $201 - $1,000 +2 US Domestic Bank A Money Market Account N/A $250,001 - $500,000 None (or less than $201) +3 US Domestic Bank B Checking and Savings Accounts N/A $50,001 - $100,000 None (or less than $201) +4 College Savings 529 Plan - Child 1 N/A +4.1 CollegeAmerica 529 American Balanced Fund C Yes $15,001 - $50,000 Dividends, Capital Gains, Interest $1,001 - $2,500 +4.2 College America 529 American Funds Global Balanced - GBAL C Yes $15,001 - $50,000 Dividends, Capital Gains, Interest $1,001 - $2,500 +4.3 CollegeAmerica 529 American Funds Growth and Income PSGI C - Yes $1,001 - $15,000 None (or less than $201) +5 College Savings 529 Plan - Child 2 N/A +5.1 CollegeAmerica 529 American Balanced Fund C Yes $15,001 - $50,000 None (or less than $201) +5.2 College America 529 American Funds Global Balanced - GBAL C Yes $15,001 - $50,000 Dividends, Capital Gains, Interest $1,001 - $2,500 +5.3 CollegeAmerica 529 American Funds Growth and Income PSGI C - Yes $15,001 - $50,000 Dividends, Capital Gains, Interest $1,001 - $2,500 +6 US Domestic Bank A Roth IRA N/A None (or less than $201) +6.1 Delaware Emerging Markets Fund CL A Yes $1,001 - $15,000 None (or less than $201) +7 DRM Todd Pointe LLC - 50% Ownership N/A $100,001 - $250,000 Rent and Royalties $15,001 - $50,000 +7.1 Residential Real Estate - Brentwood, TN - 50% Ownersh N/A ip $100,001 - $250,000 Rent and Royalties $15,001 - $50,000 +7.2 Residential Real Estate - Nashville, TN - 50% Ownersh N/A ip $50,001 - $100,000 Rent and Royalties $15,001 - $50,000 +7.3 Bank of America Business Checking and Savings - 50% wnership O N/A $15,001 - $50,000 None (or less than $201) + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1705, ""end"": 1738}, {""label"": ""Description"", ""start"": 1748, ""end"": 1781}, {""label"": ""Description"", ""start"": 1874, ""end"": 1893}, {""label"": ""Description"", ""start"": 2000, ""end"": 2053}, {""label"": ""Description"", ""start"": 2058, ""end"": 2102}, {""label"": ""Description"", ""start"": 2129, ""end"": 2181}, {""label"": ""Description"", ""start"": 2257, ""end"": 2310}, {""label"": ""Description"", ""start"": 2315, ""end"": 2339}, {""label"": ""Description"", ""start"": 2384, ""end"": 2436}, {""label"": ""Description"", ""start"": 2441, ""end"": 2445}, {""label"": ""Description"", ""start"": 2511, ""end"": 2564}, {""label"": ""Description"", ""start"": 2647, ""end"": 2700}, {""label"": ""Description"", ""start"": 2705, ""end"": 2711}, {""label"": ""Description"", ""start"": 2774, ""end"": 2800}, {""label"": ""Description"", ""start"": 2910, ""end"": 2943}, {""label"": ""Description"", ""start"": 5218, ""end"": 5251}, {""label"": ""Description"", ""start"": 5350, ""end"": 5416}, {""label"": ""Description"", ""start"": 5508, ""end"": 5536}, {""label"": ""Description"", ""start"": 5666, ""end"": 5708}, {""label"": ""Description"", ""start"": 5824, ""end"": 5865}, {""label"": ""Description"", ""start"": 5973, ""end"": 6003}, {""label"": ""Description"", ""start"": 6131, ""end"": 6197}, {""label"": ""Description"", ""start"": 6280, ""end"": 6317}, {""label"": ""Description"", ""start"": 6438, ""end"": 6483}, {""label"": ""Description"", ""start"": 6596, ""end"": 6618}, {""label"": ""Description"", ""start"": 6754, ""end"": 6808}, {""label"": ""Description"", ""start"": 6813, ""end"": 6817}, {""label"": ""Description"", ""start"": 6912, ""end"": 6952}, {""label"": ""Description"", ""start"": 7070, ""end"": 7122}, {""label"": ""Description"", ""start"": 7228, ""end"": 7263}, {""label"": ""Description"", ""start"": 7386, ""end"": 7425}, {""label"": ""Description"", ""start"": 7544, ""end"": 7566}, {""label"": ""Description"", ""start"": 7693, ""end"": 7733}, {""label"": ""Description"", ""start"": 7844, ""end"": 7875}, {""label"": ""Description"", ""start"": 7986, ""end"": 8022}, {""label"": ""Description"", ""start"": 8137, ""end"": 8173}, {""label"": ""Description"", ""start"": 8288, ""end"": 8334}, {""label"": ""Description"", ""start"": 8439, ""end"": 8486}, {""label"": ""Description"", ""start"": 8590, ""end"": 8622}, {""label"": ""Description"", ""start"": 8741, ""end"": 8795}, {""label"": ""Description"", ""start"": 8885, ""end"": 8909}, {""label"": ""Description"", ""start"": 9029, ""end"": 9058}, {""label"": ""Description"", ""start"": 9174, ""end"": 9222}, {""label"": ""Description"", ""start"": 9325, ""end"": 9345}, {""label"": ""Description"", ""start"": 9476, ""end"": 9523}, {""label"": ""Description"", ""start"": 9734, ""end"": 9771}, {""label"": ""Description"", ""start"": 9796, ""end"": 9842}, {""label"": ""Description"", ""start"": 9928, ""end"": 9978}, {""label"": ""Description"", ""start"": 10060, ""end"": 10106}, {""label"": ""Description"", ""start"": 10192, ""end"": 10232}, {""label"": ""Description"", ""start"": 10324, ""end"": 10355}, {""label"": ""Description"", ""start"": 10456, ""end"": 10492}, {""label"": ""Description"", ""start"": 10588, ""end"": 10625}, {""label"": ""Description"", ""start"": 10720, ""end"": 10757}, {""label"": ""Description"", ""start"": 10852, ""end"": 10895}, {""label"": ""Description"", ""start"": 10984, ""end"": 11014}, {""label"": ""Description"", ""start"": 11127, ""end"": 11177}, {""label"": ""Description"", ""start"": 11271, ""end"": 11318}, {""label"": ""Description"", ""start"": 11417, ""end"": 11456}, {""label"": ""Description"", ""start"": 11574, ""end"": 11622}, {""label"": ""Description"", ""start"": 11731, ""end"": 11765}, {""label"": ""Description"", ""start"": 11803, ""end"": 11846}, {""label"": ""Description"", ""start"": 11951, ""end"": 12010}, {""label"": ""Description"", ""start"": 12099, ""end"": 12162}, {""label"": ""Description"", ""start"": 12256, ""end"": 12290}, {""label"": ""Description"", ""start"": 12328, ""end"": 12371}, {""label"": ""Description"", ""start"": 12485, ""end"": 12544}, {""label"": ""Description"", ""start"": 12633, ""end"": 12696}, {""label"": ""Description"", ""start"": 12781, ""end"": 12808}, {""label"": ""Description"", ""start"": 12938, ""end"": 12973}, {""label"": ""Description"", ""start"": 13095, ""end"": 13130}, {""label"": ""Description"", ""start"": 13245, ""end"": 13298}, {""label"": ""Description"", ""start"": 13303, ""end"": 13305}, {""label"": ""Description"", ""start"": 13395, ""end"": 13448}, {""label"": ""Description"", ""start"": 13453, ""end"": 13455}, {""label"": ""Description"", ""start"": 13545, ""end"": 13608}, {""label"": ""Value"", ""start"": 1852, ""end"": 1868}, {""label"": ""Value"", ""start"": 1978, ""end"": 1994}, {""label"": ""Value"", ""start"": 2104, ""end"": 2123}, {""label"": ""Value"", ""start"": 2233, ""end"": 2251}, {""label"": ""Value"", ""start"": 2361, ""end"": 2378}, {""label"": ""Value"", ""start"": 2488, ""end"": 2505}, {""label"": ""Value"", ""start"": 2615, ""end"": 2641}, {""label"": ""Value"", ""start"": 2751, ""end"": 2768}, {""label"": ""Value"", ""start"": 2878, ""end"": 2904}, {""label"": ""Value"", ""start"": 5422, ""end"": 5438}, {""label"": ""Value"", ""start"": 5580, ""end"": 5596}, {""label"": ""Value"", ""start"": 5738, ""end"": 5754}, {""label"": ""Value"", ""start"": 5896, ""end"": 5912}, {""label"": ""Value"", ""start"": 6045, ""end"": 6061}, {""label"": ""Value"", ""start"": 6203, ""end"": 6220}, {""label"": ""Value"", ""start"": 6352, ""end"": 6368}, {""label"": ""Value"", ""start"": 6510, ""end"": 6526}, {""label"": ""Value"", ""start"": 6668, ""end"": 6684}, {""label"": ""Value"", ""start"": 6826, ""end"": 6842}, {""label"": ""Value"", ""start"": 6984, ""end"": 7000}, {""label"": ""Value"", ""start"": 7142, ""end"": 7158}, {""label"": ""Value"", ""start"": 7300, ""end"": 7316}, {""label"": ""Value"", ""start"": 7458, ""end"": 7474}, {""label"": ""Value"", ""start"": 7616, ""end"": 7633}, {""label"": ""Value"", ""start"": 7754, ""end"": 7770}, {""label"": ""Value"", ""start"": 7905, ""end"": 7921}, {""label"": ""Value"", ""start"": 8047, ""end"": 8063}, {""label"": ""Value"", ""start"": 8198, ""end"": 8214}, {""label"": ""Value"", ""start"": 8349, ""end"": 8365}, {""label"": ""Value"", ""start"": 8500, ""end"": 8516}, {""label"": ""Value"", ""start"": 8651, ""end"": 8668}, {""label"": ""Value"", ""start"": 8802, ""end"": 8821}, {""label"": ""Value"", ""start"": 8946, ""end"": 8965}, {""label"": ""Value"", ""start"": 9090, ""end"": 9111}, {""label"": ""Value"", ""start"": 9235, ""end"": 9256}, {""label"": ""Value"", ""start"": 9386, ""end"": 9403}, {""label"": ""Value"", ""start"": 9853, ""end"": 9869}, {""label"": ""Value"", ""start"": 9985, ""end"": 10002}, {""label"": ""Value"", ""start"": 10117, ""end"": 10134}, {""label"": ""Value"", ""start"": 10249, ""end"": 10265}, {""label"": ""Value"", ""start"": 10381, ""end"": 10398}, {""label"": ""Value"", ""start"": 10513, ""end"": 10530}, {""label"": ""Value"", ""start"": 10645, ""end"": 10662}, {""label"": ""Value"", ""start"": 10777, ""end"": 10794}, {""label"": ""Value"", ""start"": 10909, ""end"": 10925}, {""label"": ""Value"", ""start"": 11041, ""end"": 11057}, {""label"": ""Value"", ""start"": 11184, ""end"": 11200}, {""label"": ""Value"", ""start"": 11340, ""end"": 11357}, {""label"": ""Value"", ""start"": 11486, ""end"": 11505}, {""label"": ""Value"", ""start"": 11643, ""end"": 11661}, {""label"": ""Value"", ""start"": 11872, ""end"": 11889}, {""label"": ""Value"", ""start"": 12020, ""end"": 12037}, {""label"": ""Value"", ""start"": 12168, ""end"": 12184}, {""label"": ""Value"", ""start"": 12397, ""end"": 12414}, {""label"": ""Value"", ""start"": 12554, ""end"": 12571}, {""label"": ""Value"", ""start"": 12702, ""end"": 12719}, {""label"": ""Value"", ""start"": 13007, ""end"": 13023}, {""label"": ""Value"", ""start"": 13164, ""end"": 13183}, {""label"": ""Value"", ""start"": 13314, ""end"": 13333}, {""label"": ""Value"", ""start"": 13464, ""end"": 13482}, {""label"": ""Value"", ""start"": 13614, ""end"": 13631}, {""label"": ""Amount"", ""start"": 3232, ""end"": 3420}, {""label"": ""Amount"", ""start"": 3429, ""end"": 3437}, {""label"": ""Amount"", ""start"": 5477, ""end"": 5501}, {""label"": ""Amount"", ""start"": 5635, ""end"": 5659}, {""label"": ""Amount"", ""start"": 5793, ""end"": 5817}, {""label"": ""Amount"", ""start"": 5951, ""end"": 5966}, {""label"": ""Amount"", ""start"": 6100, ""end"": 6124}, {""label"": ""Amount"", ""start"": 6258, ""end"": 6273}, {""label"": ""Amount"", ""start"": 6407, ""end"": 6431}, {""label"": ""Amount"", ""start"": 6565, ""end"": 6589}, {""label"": ""Amount"", ""start"": 6723, ""end"": 6747}, {""label"": ""Amount"", ""start"": 6881, ""end"": 6905}, {""label"": ""Amount"", ""start"": 7039, ""end"": 7063}, {""label"": ""Amount"", ""start"": 7197, ""end"": 7221}, {""label"": ""Amount"", ""start"": 7355, ""end"": 7379}, {""label"": ""Amount"", ""start"": 7513, ""end"": 7537}, {""label"": ""Amount"", ""start"": 7671, ""end"": 7686}, {""label"": ""Amount"", ""start"": 7813, ""end"": 7837}, {""label"": ""Amount"", ""start"": 7964, ""end"": 7979}, {""label"": ""Amount"", ""start"": 8106, ""end"": 8130}, {""label"": ""Amount"", ""start"": 8257, ""end"": 8281}, {""label"": ""Amount"", ""start"": 8408, ""end"": 8432}, {""label"": ""Amount"", ""start"": 8559, ""end"": 8583}, {""label"": ""Amount"", ""start"": 8710, ""end"": 8734}, {""label"": ""Amount"", ""start"": 8861, ""end"": 8878}, {""label"": ""Amount"", ""start"": 9005, ""end"": 9022}, {""label"": ""Amount"", ""start"": 9149, ""end"": 9167}, {""label"": ""Amount"", ""start"": 9294, ""end"": 9318}, {""label"": ""Amount"", ""start"": 9445, ""end"": 9469}, {""label"": ""Amount"", ""start"": 9908, ""end"": 9921}, {""label"": ""Amount"", ""start"": 10040, ""end"": 10053}, {""label"": ""Amount"", ""start"": 10172, ""end"": 10185}, {""label"": ""Amount"", ""start"": 10304, ""end"": 10317}, {""label"": ""Amount"", ""start"": 10436, ""end"": 10449}, {""label"": ""Amount"", ""start"": 10568, ""end"": 10581}, {""label"": ""Amount"", ""start"": 10700, ""end"": 10713}, {""label"": ""Amount"", ""start"": 10832, ""end"": 10845}, {""label"": ""Amount"", ""start"": 10964, ""end"": 10977}, {""label"": ""Amount"", ""start"": 11096, ""end"": 11120}, {""label"": ""Amount"", ""start"": 11239, ""end"": 11264}, {""label"": ""Amount"", ""start"": 11397, ""end"": 11410}, {""label"": ""Amount"", ""start"": 11543, ""end"": 11567}, {""label"": ""Amount"", ""start"": 11700, ""end"": 11724}, {""label"": ""Amount"", ""start"": 11929, ""end"": 11944}, {""label"": ""Amount"", ""start"": 12077, ""end"": 12092}, {""label"": ""Amount"", ""start"": 12225, ""end"": 12249}, {""label"": ""Amount"", ""start"": 12454, ""end"": 12478}, {""label"": ""Amount"", ""start"": 12611, ""end"": 12626}, {""label"": ""Amount"", ""start"": 12759, ""end"": 12774}, {""label"": ""Amount"", ""start"": 12907, ""end"": 12931}, {""label"": ""Amount"", ""start"": 13064, ""end"": 13088}, {""label"": ""Amount"", ""start"": 13221, ""end"": 13238}, {""label"": ""Amount"", ""start"": 13371, ""end"": 13388}, {""label"": ""Amount"", ""start"": 13521, ""end"": 13538}, {""label"": ""Amount"", ""start"": 13671, ""end"": 13695}]" +"24","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel +Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +Palmas, Melanie D +Executive Assistant, Small Business Administration +Date of Appointment: 12/11/2017 + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +/s/ Melanie Palmas [electronically signed by Melanie Palmas on 2018-01-16 08:51:55 in FDonline] + +Agency Ethics Official's Opinion - On the basis of information contained in this report, I conclude that the filer is in compliance with applicable laws and regulations +(subject to any comments below) + +/s/ Marilyn Barnes, Super Administrator [electronically signed by Marilyn Barnes on 2018-01-16 18:27:15 in FDonline] + +Other review conducted by: + +U.S. Office of Government Ethics Certification +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE ORG TYPE POSITION FROM TO + +County 03/01 05/01 +1 Chester County MH/IDD West Chester, PA, US Bilingual Supports Coordinator +Government /2013 /2015 + +2 YMCA of Greater Director of Youth Development and Community 08/01 04/01 +Coatesville, PA, US Non -Profit +Brandywine Outreach /2015 /2016 + +Lincoln University, PA, 10/01 05/30 +3 The Lincoln University University/College Adjunct Professor +US /2015 /2017 + +08/01 12/11 +4 Harcum College Bryn Mwar, PA, US College/University Adjunct Professor +/2013 /2017 + +01/15 12/11 +5 Life Transforming Ministries Coatesville, PA, US Non -Profit Tax Preparer, Program Director +/2016 /2017 + +2. Filer's Employment Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 (Self EI) Life Transforming Ministries Employment Coatesville, PA, US N/A Salary $25,000.00 + +2 (Self EI) Harcum College Employment Coatesville, PA, US N/A Salary $6,400.00 + +3. Filer's Employment Agreements and Arrangements + +None + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +None + +5. Spouse's Employment Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 (S) (Spouse EI) Morrison Custom Concrete Coatesville, PA, US N/A + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 (Cash Deposit/Savings) BB&T Bank Coatesville, PA, US CD N/A $1,001 - $15,000 CD $1,048.00 + +7. Transactions + +(N/A) - Not required for this type of report + +8. Liabilities + +# CREDITOR NAME TYPE OF LIABILITY AMOUNT YEAR INCURRED INTEREST RATE TERM + +1 Navient; Wilkes-Barre, PA, US Student Loans $15,001 - $50,000 2007 7.2% 30 +9. Gifts and Reimbursements + +(N/A) - Not required for this type of report +Endnotes + +PART # ENDNOTE +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable +even if the filer did not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) +positions solely of an honorary nature; (3) positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; +and (5) passive investment interests as a limited partner or non -managing member of a limited liability company. + +2. Filer's Employment Assets and Income + +Part 2 discloses the following: + +Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, +honoraria, scholarships, and prizes) +Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or +(2) produced more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their +underlying holdings as appropriate, deferred compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, +employment, or other income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount +of income is $0 - $200 or if the asset qualifies as an excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), +such as the following: + +Future employment +Leave of absence +Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current +employer) +Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan +Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share +of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting +period. The filer discloses payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the +source made its payment to the filer's employer and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the +services for which the client is paying. + +5. Spouse's Employment Assets and Income +Part 5 discloses the following: + +Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and +partnership share) +Sources of honoraria for the filer's spouse greater than $200 during the reporting period +Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater +than $1,000 or (2) produced more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans +/accounts and their underlying holdings as appropriate, deferred compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, +employment, or other income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of +income is $0 - $200 or if the asset qualifies as an excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding +honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment +income during the reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and +dependent children. This section does not include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) +income or retirement benefits associated with United States Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money +market accounts) at a single financial institution with a value of $5,000 or less (unless more than $200 of income was produced). Additional exceptions apply. Note: The +type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child +during reporting period. This section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., +checking, savings, CDs, money market accounts) and money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings +Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the +following types of liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, +household furniture, or appliances, unless the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the +outstanding liability did not exceed $10,000 at the end of the reporting period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not +include the following items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local +governments; (3) bequests and other forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) +gifts of hospitality (food, lodging, entertainment) at the donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children +totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act +of 2012 (Pub. L. 112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The +primary use of the information on this report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may +also be disclosed upon request to any requesting person in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect +applications for public access of your own form upon request. Additional disclosures of the information on this report may be made: (1) to any requesting person, subject +to the limitation contained in section 208(d)(1) of title 18, any determination granting an exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a +Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential violations of law or regulation; (3) to another Federal +agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with a judge -issued subpoena; (4) to a +source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records Administration or +the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a +party to litigation or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new +office, department or agency when an employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in +response to an inquiry made on behalf of an individual who is the subject of the record; (10) to contractors and other non -Government employees working on a contract, +service or assignment for the Federal Government when necessary to accomplish a function related to an OGE Government -wide system of records; and (11) on the +OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an individual nominated by the President to a position requiring +Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and +completing the form. Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, +to the Program Counsel, U.S. Office of Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information +unless it displays a currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e). +Reviewer Comments and Submission History +for Melanie Palmas + +01/10/2018 11:51:22 +Filing submitted","[{""label"": ""Description"", ""start"": 1744, ""end"": 1813}, {""label"": ""Description"", ""start"": 1839, ""end"": 1894}, {""label"": ""Description"", ""start"": 2137, ""end"": 2197}, {""label"": ""Description"", ""start"": 2284, ""end"": 2339}, {""label"": ""Amount"", ""start"": 1825, ""end"": 1835}, {""label"": ""Amount"", ""start"": 1906, ""end"": 1915}, {""label"": ""Amount"", ""start"": 2364, ""end"": 2373}, {""label"": ""Value"", ""start"": 2344, ""end"": 2360}]" +"27","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +Haller, Julia Z. + +Special Assistant to Transition, WHL, DOS +Date of Appointment: 01/23/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: + +Member, S/P, Policy and Planning, 2/2017 - 2/2017 +Senior Advisor, Legal Advisor, 1/2017 - 2/2017 + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +Julia Z. Haller +User ID: + +02/21/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +03/13/2017 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +03/13/2017 + +Reviewer: + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +03/13/2017 +U.S. Office of Government Ethics Certification + +1. Filer Positions Held outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 Law Offices of Juli Z. Haller Washington,, DC, USA Business Enterprise Proprietor 03/2014 01/2017 + +2. Filer's Employment Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Law Office Checking Accounts N/A $1,001 - $15,000 None (or less than +$201) + +2 Campaign Work N/A Income from personal +services + +$8750 + +3 Law Offices of Juli Z. Haller N/A Legal Services $80088 + +3. Filer Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +# SOURCE NAME CITY, STATE BRIEF DESCRIPTION OF DUTIES + +1 Atlantic Service Group, Inc. (ASG) Washington, DC Legal Representation of ASG (public record) + +. + +2 Broadspire Washington, DC Legal Representation of Insurance Co. Broad +spire and of its Insured Acme - Invoiced + +3 Charles Woolridge Laurel, MD, MD Legal Representation (representation is a m +atter of Public record) + +4 Christopher Whitehouse Washington, DC Legal Representation of Christopher Whiteho +use (public record). + +5 Hill Strategy LLC and IEX Investor's Exchange +(NY) + +6 Law Offices of David C. Numrych, PC // Regency +Cab + +Arlington , VA Legal representation/ advice. + +Washington, DC Co -Representation of Regency Cab Co., a VA +registered business. (Matter of Public Reco +rd) + +7 Look Restaurant/ Cities Restaurant/ TGR Inc. Washington, DC Legal Representation of Look Restaurant Bar +& Grill AKA Cities / TGR, Inc. (Matter of +public record). + +8 Mark Kaufman Washington, DC Legal Representation of his Company, Hastin +gs Development Corp. (now based in Silver S +pring MD), (matter of public record). + +9 Pilar Hospitality Group, LLC Washington, DC Legal Representation of Bar Pilar aka Pilar +Hospitality Group, LLC (public record). + +10 Republican Party of Virgnia Richmond, VA Campaign work + +11 Warren C. McDowell Washington, DC Legal Representation (matter of public reco +rd) +5. Spouse's Employment Assets and Income + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Checking, Savings or Money Market Accounts. N/A $15,001 - $50,000 None (or less than +$201) + +2 Rollover IRA N/A $50,001 - $100,000 None (or less than +$201) + +3 BBRY stock N/A $1,001 - $15,000 None (or less than +$201) + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +# CREDITOR NAME TYPE OF LIABILITY AMOUNT + +YEAR +INCURRED + +INTEREST +RATE TERM + +1 Bank of America Credit Card/Revolving Charge Account $10,001 - +$15,000 + +2 Chase Credit Card/Revolving Charge Account $10,001 - +$15,000 + +2016 5.99% monthly + +2016 0.0% 0% until 5/17 + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside the United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets and Income + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets and Income + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1457, ""end"": 1485}, {""label"": ""Description"", ""start"": 1535, ""end"": 1548}, {""label"": ""Description"", ""start"": 1593, ""end"": 1622}, {""label"": ""Description"", ""start"": 3316, ""end"": 3359}, {""label"": ""Description"", ""start"": 3410, ""end"": 3422}, {""label"": ""Description"", ""start"": 3474, ""end"": 3484}, {""label"": ""Value"", ""start"": 1490, ""end"": 1506}, {""label"": ""Value"", ""start"": 3364, ""end"": 3381}, {""label"": ""Value"", ""start"": 3427, ""end"": 3445}, {""label"": ""Value"", ""start"": 3489, ""end"": 3505}, {""label"": ""Amount"", ""start"": 1507, ""end"": 1531}, {""label"": ""Amount"", ""start"": 1584, ""end"": 1589}, {""label"": ""Amount"", ""start"": 1642, ""end"": 1648}, {""label"": ""Amount"", ""start"": 3382, ""end"": 3406}, {""label"": ""Amount"", ""start"": 3446, ""end"": 3470}, {""label"": ""Amount"", ""start"": 3506, ""end"": 3530}]" +"28","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel +Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +Paranzino, Anthony M +Senior Adviser to the Chief of Staff, Small Business Administration +Date of Appointment: 01/20/2017 + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +/s/ Anthony Paranzino [electronically signed by Anthony Paranzino on 2017-03-17 11:50:52 in FDonline] + +Agency Ethics Official's Opinion - On the basis of information contained in this report, I conclude that the filer is in compliance with applicable laws and regulations +(subject to any comments below) + +/s/ Marilyn Barnes, Super Administrator [electronically signed by Marilyn Barnes on 2017-03-21 13:59:22 in FDonline] + +Other review conducted by: + +U.S. Office of Government Ethics Certification +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE ORG TYPE POSITION FROM TO + +1 American Enterprise Institute Washington, DC, US Non-profit Think Tank Program Manager 06/30/2014 07/06/2016 + +2 University of Wisconsin -Madison Madison, WI, US University Teaching Assistant 09/01/2016 01/12/2017 + +2. Filer's Employment Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 (Self EI) American Enterprise Institute Employment Income Washington, DC, US N/A Salary $29,557.66 + +2 (Self EI) University of Wisconsin -Madison Income as Teaching Assistant Madison, WI, US N/A Salary $5,038.16 + +3 (Self EI) University of Wisconsin -Madison Scholarship Madison, WI, US N/A Scholarships $5,000.00 + +3. Filer's Employment Agreements and Arrangements + +EMPLOYER OR OTHER PARTY TO AGREEMENT + +# /ARRANGEMENT CITY, STATE STATUS AND TERMS DATE + +Madison, WI, Approved one -semester leave of absence from PhD program in Economics 02 +1 University of Wisconsin -Madison +US and Finance /2017 + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +None +5. Spouse's Employment Assets and Income + +None + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 (ETF) VYM Yes $1,001 - $15,000 None (or less than $201) + +2 (ETF) VOO Yes $1,001 - $15,000 None (or less than $201) + +3 (IRA) The Vanguard Group No + +3.1 (Mutual Fund) VFIAX-Vanguard 500 Index Fund Admiral Yes $15,001 - $50,000 None (or less than $201) + +7. Transactions + +(N/A) - Not required for this type of report + +8. Liabilities + +# CREDITOR NAME TYPE OF LIABILITY AMOUNT YEAR INCURRED INTEREST RATE TERM + +1 Princeton University; Princeton, NJ, US Student Loans $15,001 - $50,000 2014 5% 10 yrs +9. Gifts and Reimbursements + +(N/A) - Not required for this type of report +Endnotes + +PART # ENDNOTE +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable +even if the filer did not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) +positions solely of an honorary nature; (3) positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; +and (5) passive investment interests as a limited partner or non -managing member of a limited liability company. + +2. Filer's Employment Assets and Income + +Part 2 discloses the following: + +Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, +honoraria, scholarships, and prizes) +Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or +(2) produced more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their +underlying holdings as appropriate, deferred compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, +employment, or other income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount +of income is $0 - $200 or if the asset qualifies as an excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), +such as the following: + +Future employment +Leave of absence +Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current +employer) +Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan +Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share +of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting +period. The filer discloses payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the +source made its payment to the filer's employer and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the +services for which the client is paying. + +5. Spouse's Employment Assets and Income +Part 5 discloses the following: + +Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and +partnership share) +Sources of honoraria for the filer's spouse greater than $200 during the reporting period +Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater +than $1,000 or (2) produced more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans +/accounts and their underlying holdings as appropriate, deferred compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, +employment, or other income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of +income is $0 - $200 or if the asset qualifies as an excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding +honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment +income during the reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and +dependent children. This section does not include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) +income or retirement benefits associated with United States Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money +market accounts) at a single financial institution with a value of $5,000 or less (unless more than $200 of income was produced). Additional exceptions apply. Note: The +type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child +during reporting period. This section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., +checking, savings, CDs, money market accounts) and money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings +Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the +following types of liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, +household furniture, or appliances, unless the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the +outstanding liability did not exceed $10,000 at the end of the reporting period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not +include the following items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local +governments; (3) bequests and other forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) +gifts of hospitality (food, lodging, entertainment) at the donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children +totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act +of 2012 (Pub. L. 112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The +primary use of the information on this report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may +also be disclosed upon request to any requesting person in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect +applications for public access of your own form upon request. Additional disclosures of the information on this report may be made: (1) to any requesting person, subject +to the limitation contained in section 208(d)(1) of title 18, any determination granting an exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a +Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential violations of law or regulation; (3) to another Federal +agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with a judge -issued subpoena; (4) to a +source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records Administration or +the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a +party to litigation or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new +office, department or agency when an employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in +response to an inquiry made on behalf of an individual who is the subject of the record; (10) to contractors and other non -Government employees working on a contract, +service or assignment for the Federal Government when necessary to accomplish a function related to an OGE Government -wide system of records; and (11) on the +OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an individual nominated by the President to a position requiring +Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and +completing the form. Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, +to the Program Counsel, U.S. Office of Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information +unless it displays a currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e). +Reviewer Comments and Submission History +for Anthony Paranzino + +03/17/2017 11:50:52 +Filing submitted","[{""label"": ""Description"", ""start"": 1398, ""end"": 1474}, {""label"": ""Description"", ""start"": 1500, ""end"": 1587}, {""label"": ""Description"", ""start"": 1612, ""end"": 1682}, {""label"": ""Description"", ""start"": 2190, ""end"": 2199}, {""label"": ""Description"", ""start"": 2249, ""end"": 2258}, {""label"": ""Description"", ""start"": 2308, ""end"": 2332}, {""label"": ""Description"", ""start"": 2341, ""end"": 2392}, {""label"": ""Amount"", ""start"": 1486, ""end"": 1496}, {""label"": ""Amount"", ""start"": 1599, ""end"": 1608}, {""label"": ""Amount"", ""start"": 1700, ""end"": 1709}, {""label"": ""Amount"", ""start"": 2221, ""end"": 2245}, {""label"": ""Amount"", ""start"": 2280, ""end"": 2304}, {""label"": ""Amount"", ""start"": 2415, ""end"": 2439}, {""label"": ""Value"", ""start"": 2204, ""end"": 2220}, {""label"": ""Value"", ""start"": 2263, ""end"": 2279}, {""label"": ""Value"", ""start"": 2397, ""end"": 2414}]" +"34","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +NIKOLICH, MILAN + +DDR&E for Research and Technology, OUSD/R&E, OSD +Date of Appointment: 08/13/2018 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +MILAN NIKOLICH +User ID: da4daea368e5145aabece24d7fdc038f379a3335587c716895c607e9d10cf8ba1daf69065372 +10/18/2018 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +JEFFREY A. GREEN +User ID: 27fb542df042281d9064a05ba940798026797d82e50c5f2c89b1ccf4f596f8e358278dd0 +10/25/2018 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +MICHAEL D. GRIFFIN +User ID: feda24b37b964d1ce2a49b669181aab8d2ac37bf2c9ead779fc6bcb041cabd9f10b1316f0c39 +10/22/2018 + +U.S. Office of Government Ethics Certification + +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 CACI Arlington, VA, USA Business Enterprise Employee 10/2005 08/2016 + +2 SAIC Reston, VA, USA Business Enterprise Employee 08/2016 08/2018 +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 SAIC 401K Account N/A None (or less than +$201) + +1.1 Vanguard Institutional Index Institutional Fund (VIII +X) + +2 CACI 401k N/A None (or less than +$201) + +2.1 T Rowe Price - Vanguard Institutional Index (VINIX) Yes $500,001 - $1,000,000 None (or less than +$201) + +3 University of California 403B N/A None (or less than +$201) + +3.1 403B - Fidelity University of California Growth Compa +ny Fund + +3.2 Defined Contribution Plan - Fidelity University of Ca +lifornia Growth Company Fund + +4 SAIC N/A Salary $379019 + +Yes $50,001 - $100,000 None (or less than +$201) + +Yes $250,001 - $500,000 None (or less than +$201) + +Yes $15,001 - $50,000 None (or less than +$201) + +3. Filer's Employment Agreements and Arrangements + +EMPLOYER OR OTHER PARTY TO + +# AGREEMENT/ARRANGEMENT CITY/STATE STATUS AND TERMS DATE + +1 CACI Arlington, VA, USA Continuing participation in Employee Benefit Plan: I +left my 401K plan with CACI vice roll over to IRA. + +CACI has not contributed to the plan since my departu +re in August 2016. + +2 SAIC Reston, VA, USA Continuing participation in Employee Benefit Plan: I +left my 401K plan with SAIC vice roll over to IRA. + +SAIC has not contributed to the plan since my departu +re in August 2018. + +3 University of California Los Alamos, NM, USA Continuing participation in Employee Benefit Plan: I +left my 403B plan with Los Alamos Nat'l Lab vice IRA +Rollover. LANL has not contributed to the plan sinc +e my departure in May 1995. + +10/2005 + +08/2016 + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +# SOURCE NAME CITY, STATE BRIEF DESCRIPTION OF DUTIES + +1 CACI Arlington, VA Duty title was Executive Associate working +on DoD contracts. Departed the company in +August 2016. + +2 SAIC Reston, VA Staff member working on DoD contracts. Depa +rted the company in August 2018. + +07/1993 + +5. Spouse's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Leidos 401K N/A None (or less than +$201) +1.1 Vanguard Index Fund Yes $50,001 - $100,000 None (or less than +$201) + +2 Lockheed Martin 401K N/A None (or less than +$201) + +2.1 Vanguard S&P 500 Indedex Equity Fund Yes $500,001 - $1,000,000 None (or less than +$201) + +2.2 U.S. Equity Fund - Benchmarked against the Russell 30 +00 index + +Yes $50,001 - $100,000 None (or less than +$201) + +2.3 ESOP Fund - 99.99% Lockheed Stock + 0.01% Cash Yes $500,001 - $1,000,000 None (or less than +$201) + +3 Salary - Employment with Leidos Jan 17 to Sep 18 N/A Salary + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 U.S. Bank Account #1 (Cash) N/A $100,001 - $250,000 None (or less than +$201) + +2 U.S. Bank Account #2 Cash N/A $100,001 - $250,000 None (or less than +$201) + +3 U.S. Investment Account N/A None (or less than +$201) + +3.1 Vanguard Prime Money Market Fund (VMMXX) N/A $500,001 - $1,000,000 Dividends $5,001 - $15,000 + +3.2 Vanguard S&P 500 Index Fund (VFIAX) Yes $500,001 - $1,000,000 Dividends $5,001 - $15,000 + +3.3 Vanguard Total Stock Market Index Fund (VTSAX) Yes $1,000,001 - $5,000,000 Dividends $15,001 - $50,000 + +4 Inherited IRA No None (or less than +$201) + +4.1 Vanguard Total Stock Market Inder Fund Yes $100,001 - $250,000 $2,501 - $5,000 + +5 IRA #1 N/A None (or less than +$201) + +5.1 Fidelity Blue Chip Fund (FBGRX) Yes $1,000,001 - $5,000,000 None (or less than +$201) + +5.2 Fidelity Growth Company Fund (FDGRX) Yes $1,000,001 - $5,000,000 None (or less than +$201) + +5.3 Fidelity S&P 500 Fund (FUSVX) Yes $50,001 - $100,000 None (or less than +$201) + +6 IRA #2 N/A None (or less than +$201) + +6.1 Vanguard Total Stock market Index Fund (VTSAX) Yes $500,001 - $1,000,000 None (or less than +$201) + +7 IRA #3 N/A None (or less than +$201) + +7.1 Vanguard Total Stock Market Fund (VTSAX) Yes $250,001 - $500,000 None (or less than +$201) + +8 IRA #4 N/A None (or less than +$201) + +8.1 American Century Growth Company Fund (TWCGX) Yes $50,001 - $100,000 None (or less than +$201) + +7. Transactions + +This report has no reported Transactions +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $390 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $390 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $156 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1592, ""end"": 1609}, {""label"": ""Description"", ""start"": 1644, ""end"": 1700}, {""label"": ""Description"", ""start"": 1704, ""end"": 1713}, {""label"": ""Description"", ""start"": 1748, ""end"": 1799}, {""label"": ""Description"", ""start"": 1854, ""end"": 1883}, {""label"": ""Description"", ""start"": 1918, ""end"": 1979}, {""label"": ""Description"", ""start"": 1985, ""end"": 2067}, {""label"": ""Description"", ""start"": 2071, ""end"": 2075}, {""label"": ""Description"", ""start"": 3499, ""end"": 3510}, {""label"": ""Description"", ""start"": 3544, ""end"": 3563}, {""label"": ""Description"", ""start"": 3615, ""end"": 3635}, {""label"": ""Description"", ""start"": 3670, ""end"": 3706}, {""label"": ""Description"", ""start"": 3763, ""end"": 3825}, {""label"": ""Description"", ""start"": 3880, ""end"": 3926}, {""label"": ""Description"", ""start"": 3981, ""end"": 4029}, {""label"": ""Description"", ""start"": 4123, ""end"": 4150}, {""label"": ""Description"", ""start"": 4203, ""end"": 4228}, {""label"": ""Description"", ""start"": 4281, ""end"": 4304}, {""label"": ""Description"", ""start"": 4339, ""end"": 4379}, {""label"": ""Description"", ""start"": 4438, ""end"": 4473}, {""label"": ""Description"", ""start"": 4532, ""end"": 4578}, {""label"": ""Description"", ""start"": 4638, ""end"": 4651}, {""label"": ""Description"", ""start"": 4685, ""end"": 4723}, {""label"": ""Description"", ""start"": 4767, ""end"": 4773}, {""label"": ""Description"", ""start"": 4808, ""end"": 4839}, {""label"": ""Description"", ""start"": 4898, ""end"": 4934}, {""label"": ""Description"", ""start"": 4993, ""end"": 5022}, {""label"": ""Description"", ""start"": 5074, ""end"": 5080}, {""label"": ""Description"", ""start"": 5115, ""end"": 5161}, {""label"": ""Description"", ""start"": 5216, ""end"": 5222}, {""label"": ""Description"", ""start"": 5257, ""end"": 5297}, {""label"": ""Description"", ""start"": 5350, ""end"": 5356}, {""label"": ""Description"", ""start"": 5391, ""end"": 5435}, {""label"": ""Amount"", ""start"": 1614, ""end"": 1638}, {""label"": ""Amount"", ""start"": 1718, ""end"": 1742}, {""label"": ""Amount"", ""start"": 1826, ""end"": 1850}, {""label"": ""Amount"", ""start"": 1888, ""end"": 1912}, {""label"": ""Amount"", ""start"": 2087, ""end"": 2094}, {""label"": ""Amount"", ""start"": 2119, ""end"": 2143}, {""label"": ""Amount"", ""start"": 2169, ""end"": 2193}, {""label"": ""Amount"", ""start"": 2217, ""end"": 2241}, {""label"": ""Amount"", ""start"": 3515, ""end"": 3539}, {""label"": ""Amount"", ""start"": 3587, ""end"": 3611}, {""label"": ""Amount"", ""start"": 3640, ""end"": 3664}, {""label"": ""Amount"", ""start"": 3733, ""end"": 3757}, {""label"": ""Amount"", ""start"": 3850, ""end"": 3874}, {""label"": ""Amount"", ""start"": 3953, ""end"": 3977}, {""label"": ""Amount"", ""start"": 4175, ""end"": 4199}, {""label"": ""Amount"", ""start"": 4253, ""end"": 4277}, {""label"": ""Amount"", ""start"": 4309, ""end"": 4333}, {""label"": ""Amount"", ""start"": 4416, ""end"": 4432}, {""label"": ""Amount"", ""start"": 4510, ""end"": 4526}, {""label"": ""Amount"", ""start"": 4617, ""end"": 4634}, {""label"": ""Amount"", ""start"": 4655, ""end"": 4679}, {""label"": ""Amount"", ""start"": 4748, ""end"": 4763}, {""label"": ""Amount"", ""start"": 4778, ""end"": 4802}, {""label"": ""Amount"", ""start"": 4868, ""end"": 4892}, {""label"": ""Amount"", ""start"": 4963, ""end"": 4987}, {""label"": ""Amount"", ""start"": 5046, ""end"": 5070}, {""label"": ""Amount"", ""start"": 5085, ""end"": 5109}, {""label"": ""Amount"", ""start"": 5188, ""end"": 5212}, {""label"": ""Amount"", ""start"": 5227, ""end"": 5251}, {""label"": ""Amount"", ""start"": 5322, ""end"": 5346}, {""label"": ""Amount"", ""start"": 5361, ""end"": 5385}, {""label"": ""Amount"", ""start"": 5459, ""end"": 5483}, {""label"": ""Value"", ""start"": 1804, ""end"": 1825}, {""label"": ""Value"", ""start"": 2100, ""end"": 2118}, {""label"": ""Value"", ""start"": 2149, ""end"": 2168}, {""label"": ""Value"", ""start"": 2199, ""end"": 2216}, {""label"": ""Value"", ""start"": 3568, ""end"": 3586}, {""label"": ""Value"", ""start"": 3711, ""end"": 3732}, {""label"": ""Value"", ""start"": 3831, ""end"": 3849}, {""label"": ""Value"", ""start"": 3931, ""end"": 3952}, {""label"": ""Value"", ""start"": 4155, ""end"": 4174}, {""label"": ""Value"", ""start"": 4233, ""end"": 4252}, {""label"": ""Value"", ""start"": 4384, ""end"": 4405}, {""label"": ""Value"", ""start"": 4478, ""end"": 4499}, {""label"": ""Value"", ""start"": 4583, ""end"": 4606}, {""label"": ""Value"", ""start"": 4728, ""end"": 4747}, {""label"": ""Value"", ""start"": 4844, ""end"": 4867}, {""label"": ""Value"", ""start"": 4939, ""end"": 4962}, {""label"": ""Value"", ""start"": 5027, ""end"": 5045}, {""label"": ""Value"", ""start"": 5166, ""end"": 5187}, {""label"": ""Value"", ""start"": 5302, ""end"": 5321}, {""label"": ""Value"", ""start"": 5440, ""end"": 5458}]" +"37","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +Frideres, Taryn F. + +General Counsel, Office of Senator Joni Ernst, US Senate +Date of Appointment: 06/22/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +Taryn F. Frideres +User ID: + +06/23/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +06/27/2017 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +06/27/2017 + +Reviewer: + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +06/27/2017 + +U.S. Office of Government Ethics Certification +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 712 Real Estate Partners LLC Alexandria, VA, USA Business Enterprise Member 09/2016 Present + +2 Pretrial Rights International Washington , DC, USA Non -Profit Organiza +tion + +Director 09/2013 04/2017 + +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Rental Home - Iowa City, IA N/A $100,001 - $250,000 Rent and Royalties $5,001 - $15,000 +2 Rental Home - Iowa City, IA N/A $100,001 - $250,000 Rent and Royalties $5,001 - $15,000 +3 Rental Home - Iowa City, IA N/A $100,001 - $250,000 Rent and Royalties $2,501 - $5,000 + +3. Filer's Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +This report has no reported Compensation Exceeding $5,000 + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Thrivent Financial Traditional IRA Yes $1,001 - $15,000 None (or less than $201) +1.1 Thrivent Mod Aggressive Alloc Fund -A Yes $1,001 - $15,000 None (or less than $201) +2 Harbor Funds Yes $1,001 - $15,000 None (or less than $201) +2.1 Harbor Capital Appreciation - INST Yes $1,001 - $15,000 Dividends, Capital Gains $201 - $1,000 +3 PNC Bank (Checking and Savings) N/A $1,001 - $15,000 None (or less than $201) +4 Edward Jones Mutual Funds Yes $1,001 - $15,000 Dividends, Capital Gains $1,001 - $2,500 +4.1 Growth Fund of America CL A Yes None (or less than $1,001) None (or less than $201) +5 Acorns Yes $1,001 - $15,000 Dividends, Capital Gains $1,001 - $2,500 +6 Rex Energy Corporation N/A None (or less than Capital Gains $201 - $1,000 + +$1,001) +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +# CREDITOR NAME TYPE OF LIABILITY AMOUNT YEAR INCURRED INTEREST RATE TERM +1 Bank of America Credit Card/Revolving Charge Account $15,001 - $50,000 2017 0.0% On Demand +2 Chase Bank Credit Card/Revolving Charge Account $10,001 - $15,000 2017 0.0% On Demand +3 Citibank, N.A. Credit Card/Revolving Charge Account $10,001 - 2017 21.74% On Demand + $15,000 +4 Department of Education Loan $100,001 - 2011 6.625% Graduated + $250,000 +5 Hills Bank Mortgage, Iowa City, IA, USA $100,001 - 2017 4.5% 25 + $250,000 +6 Iowa Bankers Mortgage Corporation Mortgage, Iowa City, IA, USA $100,001 - 2016 4.0% 30 years + $250,000 +7 Iowa Student Loan Loan $15,001 - 2003 3.26% 20 years + $50,000 +8 James and Teresa Shymansky Mortgage, Iowa City, IA, USA $100,001 - 2017 3.8% 3 years + $250,000 +9 Navient Solutions, LLC Loan $15,001 - 2006 2.75% 20 years + $50,000 +10 Navient Solutions, LLC Loan $15,001 - 2012 3.25% 11 years + $50,000 +11 SoFi Loan $15,001 - 2015 4.99% 15 years + $50,000 +12 US Senate Federal Credit Union Loan $15,001 - 2017 4.0% 10 + $50,000 + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1567, ""end"": 1603}, {""label"": ""Description"", ""start"": 1688, ""end"": 1724}, {""label"": ""Description"", ""start"": 1809, ""end"": 1845}, {""label"": ""Description"", ""start"": 2406, ""end"": 2440}, {""label"": ""Description"", ""start"": 2534, ""end"": 2571}, {""label"": ""Description"", ""start"": 2662, ""end"": 2674}, {""label"": ""Description"", ""start"": 2790, ""end"": 2824}, {""label"": ""Description"", ""start"": 2907, ""end"": 2938}, {""label"": ""Description"", ""start"": 3035, ""end"": 3060}, {""label"": ""Description"", ""start"": 3154, ""end"": 3181}, {""label"": ""Description"", ""start"": 3282, ""end"": 3288}, {""label"": ""Description"", ""start"": 3401, ""end"": 3423}, {""label"": ""Value"", ""start"": 1610, ""end"": 1630}, {""label"": ""Value"", ""start"": 1731, ""end"": 1751}, {""label"": ""Value"", ""start"": 1852, ""end"": 1872}, {""label"": ""Value"", ""start"": 2450, ""end"": 2466}, {""label"": ""Value"", ""start"": 2578, ""end"": 2594}, {""label"": ""Value"", ""start"": 2706, ""end"": 2722}, {""label"": ""Value"", ""start"": 2834, ""end"": 2850}, {""label"": ""Value"", ""start"": 2951, ""end"": 2967}, {""label"": ""Value"", ""start"": 3079, ""end"": 3095}, {""label"": ""Value"", ""start"": 3198, ""end"": 3224}, {""label"": ""Value"", ""start"": 3326, ""end"": 3342}, {""label"": ""Value"", ""start"": 3445, ""end"": 3463}, {""label"": ""Value"", ""start"": 3514, ""end"": 3521}, {""label"": ""Amount"", ""start"": 1660, ""end"": 1684}, {""label"": ""Amount"", ""start"": 1781, ""end"": 1805}, {""label"": ""Amount"", ""start"": 1902, ""end"": 1925}, {""label"": ""Amount"", ""start"": 2504, ""end"": 2528}, {""label"": ""Amount"", ""start"": 2632, ""end"": 2656}, {""label"": ""Amount"", ""start"": 2760, ""end"": 2784}, {""label"": ""Amount"", ""start"": 2888, ""end"": 2901}, {""label"": ""Amount"", ""start"": 3005, ""end"": 3029}, {""label"": ""Amount"", ""start"": 3133, ""end"": 3148}, {""label"": ""Amount"", ""start"": 3252, ""end"": 3276}, {""label"": ""Amount"", ""start"": 3380, ""end"": 3395}, {""label"": ""Amount"", ""start"": 3499, ""end"": 3512}]" +"40","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +SOOFER, ROBERT M. + +DASD For Nuclear and Missile Defense Poli, USD Policy, OSD +Date of Appointment: 04/19/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: + +Professional Staff Member, Armed Services Committee, 1/2015 - 4/2017 + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +ROBERT M. SOOFER +User ID: C3DDA43B4DA0337B +06/15/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +KURT T. GERLACH +User ID: A362E5D13AC976AA +08/02/2017 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +THOMAS H. HARVEY +User ID: A0EB859DF34F5C6E +07/26/2017 + +U.S. Office of Government Ethics Certification + +1. Filer's Positions Held Outside United States Government +This report has no reported Positions Held Outside United States Government +2. Filer's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +3. Filer's Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +This report has no reported Compensation Exceeding $5,000 + +5. Spouse's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Wife Income 6. Other Assets and Income N/A Salary +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 U.S. Senate Federal Credit Union N/A $1,001 - $15,000 Interest $201 - $1,000 +2 US Senate Federal Credit Union N/A $50,001 - $100,000 Interest $201 - $1,000 +3 Capitol One Checking N/A $100,001 - $250,000 Interest $201 - $1,000 +4 Capitol One Savings N/A $100,001 - $250,000 Interest $201 - $1,000 +5 T. Rowe Price 529 College Savings Plan N/A $100,001 - $250,000 Interest $201 - $1,000 +5.1 Portfolio for College N/A $100,001 - $250,000 Dividends $2,501 - $5,000 +6 T. Rowe Price College Savings Plan N/A $100,001 - $250,000 Dividends $201 - $1,000 +6.1 Portfolio 2018 N/A $100,001 - $250,000 Dividends $2,501 - $5,000 +7 Fidelity Low Priced Stock Fund Yes $50,001 - $100,000 $2,501 - $5,000 +8 Fidelity Blue Chip Growth N/A $100,001 - $250,000 Dividends $5,001 - $15,000 +9 Fidelity Value N/A $50,001 - $100,000 Dividends $201 - $1,000 +10 Fidelity Freedom 2025 N/A $50,001 - $100,000 Dividends $2,501 - $5,000 +11 Fidelity Freedom 2020 N/A $50,001 - $100,000 Dividends $1,001 - $2,500 +12 Fidelity Balanced N/A $50,001 - $100,000 Dividends $2,501 - $5,000 +13 Fidelity Cash Reserves N/A $50,001 - $100,000 Interest $201 - $1,000 +14 Fidelity Strategic Advisers Core Fund N/A $50,001 - $100,000 Dividends $201 - $1,000 +15 Fidelity Strategic Advisers Value fund N/A $15,001 - $50,000 Dividends $201 - $1,000 +16 Fidelity Strategic Advisers Emerging Markets N/A $1,001 - $15,000 Dividends $201 - $1,000 +17 Fidelity Strategic Advisers US opportunity N/A $1,001 - $15,000 Dividends $201 - $1,000 +18 Fidelity Small Advisors Mid N/A $15,001 - $50,000 Dividends $1,001 - $2,500 +19 Fidelity Strategic Advisors International N/A $15,001 - $50,000 Dividends $5,001 - $15,000 +20 Fidelity Merger Fund N/A $15,001 - $50,000 Dividends $2,501 - $5,000 +21 Fidelity Total Bond N/A $15,001 - $50,000 Dividends $201 - $1,000 +22 TIAA-CREF Social Choice N/A $15,001 - $50,000 Dividends $2,501 - $5,000 +23 TIAA-Growth N/A $1,001 - $15,000 Dividends $1,001 - $2,500 +24 TIAA=CREF Equity Index N/A $15,001 - $50,000 Dividends $1,001 - $2,500 +25 TIAA-CREF Global Equities N/A $1,001 - $15,000 Dividends $1,001 - $2,500 +26 IBM N/A $1,001 - $15,000 Dividends $201 - $1,000 +27 Verizon Comms N/A $1,001 - $15,000 None (or less than $201) +28 Arden Alternative Strategies N/A $1,001 - $15,000 Dividends $201 - $1,000 +29 Fidelity Total Bond N/A $15,001 - $50,000 Dividends $201 - $1,000 +30 Fidelity Strategic Advisers Growth Fund N/A $15,001 - $50,000 Dividends $1,001 - $2,500 +31 Fidelity Strategic Advisers Short Duration Fund N/A $15,001 - $50,000 None (or less than $201) +32 Fidelity Strategic Advisers Income Opportunities N/A $1,001 - $15,000 Dividends $201 - $1,000 +33 Fidelity Strategic Advisers Core Income Fund N/A $15,001 - $50,000 Dividends $1,001 - $2,500 +34 Pimco Short term admin N/A $1,001 - $15,000 None (or less than $201) +35 PIMCO Total Return Admin N/A $15,001 - $50,000 Dividends $201 - $1,000 +36 Templeton Global Bond A N/A $1,001 - $15,000 Dividends $201 - $1,000 +37 Fidelity Short Term Bond N/A $1,001 - $15,000 Dividends $1,001 - $2,500 +38 Franklin New York Tax -Free Income Fund Class N/A $50,001 - $100,000 Dividends $201 - $1,000 +39 PNC Bank Checking N/A $100,001 - $250,000 None (or less than $201) +40 PNC Bank Money Market N/A $100,001 - $250,000 None (or less than $201) +41 ishares TIPS Bond N/A $1,001 - $15,000 None (or less than $201) +42 ishares Core S&P N/A $1,001 - $15,000 Dividends $201 - $1,000 +43 ishares iboxx N/A $1,001 - $15,000 None (or less than $201) +44 ishares S&P Growth N/A None (or less than $1,001) None (or less than $201) +45 ishares 7-10 year Treasury N/A $1,001 - $15,000 None (or less than $201) +46 ishares core mid -cap N/A $1,001 - $15,000 None (or less than $201) +47 ishares core small -cap N/A $1,001 - $15,000 None (or less than $201) +48 ishares JPMorgan emerg Markets bond N/A $1,001 - $15,000 None (or less than $201) +49 ishares intermediate credit bond N/A $1,001 - $15,000 None (or less than $201) +50 ishares edge msci N/A $1,001 - $15,000 Dividends $1,001 - $2,500 +51 ishares short maturity bond N/A $1,001 - $15,000 None (or less than $201) +52 ishares core MSCI EAFE N/A $1,001 - $15,000 None (or less than $201) +53 ishares short maturity bond N/A $1,001 - $15,000 None (or less than $201) +54 ishares core msci eafe N/A $1,001 - $15,000 None (or less than $201) +55 ishares currency hdege dmscieafe N/A $1,001 - $15,000 None (or less than $201) +56 Grosvenor Apartment Rental N/A Rental $24000 + +7. Transactions + +This report has no reported Transactions +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1800, ""end"": 1811}, {""label"": ""Description"", ""start"": 2102, ""end"": 2134}, {""label"": ""Description"", ""start"": 2243, ""end"": 2273}, {""label"": ""Description"", ""start"": 2384, ""end"": 2404}, {""label"": ""Description"", ""start"": 2525, ""end"": 2544}, {""label"": ""Description"", ""start"": 2666, ""end"": 2704}, {""label"": ""Description"", ""start"": 2807, ""end"": 2828}, {""label"": ""Description"", ""start"": 2950, ""end"": 2984}, {""label"": ""Description"", ""start"": 3091, ""end"": 3105}, {""label"": ""Description"", ""start"": 3234, ""end"": 3264}, {""label"": ""Description"", ""start"": 3377, ""end"": 3402}, {""label"": ""Description"", ""start"": 3521, ""end"": 3535}, {""label"": ""Description"", ""start"": 3662, ""end"": 3683}, {""label"": ""Description"", ""start"": 3805, ""end"": 3826}, {""label"": ""Description"", ""start"": 3948, ""end"": 3965}, {""label"": ""Description"", ""start"": 4091, ""end"": 4113}, {""label"": ""Description"", ""start"": 4232, ""end"": 4269}, {""label"": ""Description"", ""start"": 4373, ""end"": 4411}, {""label"": ""Description"", ""start"": 4514, ""end"": 4558}, {""label"": ""Description"", ""start"": 4655, ""end"": 4697}, {""label"": ""Description"", ""start"": 4796, ""end"": 4823}, {""label"": ""Description"", ""start"": 4939, ""end"": 4980}, {""label"": ""Description"", ""start"": 5083, ""end"": 5103}, {""label"": ""Description"", ""start"": 5226, ""end"": 5245}, {""label"": ""Description"", ""start"": 5367, ""end"": 5390}, {""label"": ""Description"", ""start"": 5510, ""end"": 5521}, {""label"": ""Description"", ""start"": 5653, ""end"": 5675}, {""label"": ""Description"", ""start"": 5796, ""end"": 5821}, {""label"": ""Description"", ""start"": 5939, ""end"": 5942}, {""label"": ""Description"", ""start"": 6042, ""end"": 6055}, {""label"": ""Description"", ""start"": 6165, ""end"": 6193}, {""label"": ""Description"", ""start"": 6277, ""end"": 6296}, {""label"": ""Description"", ""start"": 6389, ""end"": 6428}, {""label"": ""Description"", ""start"": 6503, ""end"": 6550}, {""label"": ""Description"", ""start"": 6626, ""end"": 6674}, {""label"": ""Description"", ""start"": 6738, ""end"": 6782}, {""label"": ""Description"", ""start"": 6852, ""end"": 6874}, {""label"": ""Description"", ""start"": 6975, ""end"": 6999}, {""label"": ""Description"", ""start"": 7087, ""end"": 7110}, {""label"": ""Description"", ""start"": 7199, ""end"": 7223}, {""label"": ""Description"", ""start"": 7313, ""end"": 7358}, {""label"": ""Description"", ""start"": 7425, ""end"": 7442}, {""label"": ""Description"", ""start"": 7548, ""end"": 7569}, {""label"": ""Description"", ""start"": 7671, ""end"": 7688}, {""label"": ""Description"", ""start"": 7794, ""end"": 7810}, {""label"": ""Description"", ""start"": 7906, ""end"": 7919}, {""label"": ""Description"", ""start"": 8029, ""end"": 8047}, {""label"": ""Description"", ""start"": 8152, ""end"": 8178}, {""label"": ""Description"", ""start"": 8275, ""end"": 8296}, {""label"": ""Description"", ""start"": 8398, ""end"": 8421}, {""label"": ""Description"", ""start"": 8521, ""end"": 8556}, {""label"": ""Description"", ""start"": 8644, ""end"": 8676}, {""label"": ""Description"", ""start"": 8767, ""end"": 8784}, {""label"": ""Description"", ""start"": 8881, ""end"": 8908}, {""label"": ""Description"", ""start"": 9004, ""end"": 9026}, {""label"": ""Description"", ""start"": 9127, ""end"": 9154}, {""label"": ""Description"", ""start"": 9250, ""end"": 9272}, {""label"": ""Description"", ""start"": 9373, ""end"": 9405}, {""label"": ""Description"", ""start"": 9496, ""end"": 9522}, {""label"": ""Value"", ""start"": 2153, ""end"": 2169}, {""label"": ""Value"", ""start"": 2294, ""end"": 2312}, {""label"": ""Value"", ""start"": 2435, ""end"": 2454}, {""label"": ""Value"", ""start"": 2576, ""end"": 2595}, {""label"": ""Value"", ""start"": 2717, ""end"": 2736}, {""label"": ""Value"", ""start"": 2858, ""end"": 2877}, {""label"": ""Value"", ""start"": 3001, ""end"": 3020}, {""label"": ""Value"", ""start"": 3142, ""end"": 3161}, {""label"": ""Value"", ""start"": 3285, ""end"": 3303}, {""label"": ""Value"", ""start"": 3428, ""end"": 3447}, {""label"": ""Value"", ""start"": 3572, ""end"": 3590}, {""label"": ""Value"", ""start"": 3713, ""end"": 3731}, {""label"": ""Value"", ""start"": 3856, ""end"": 3874}, {""label"": ""Value"", ""start"": 3999, ""end"": 4017}, {""label"": ""Value"", ""start"": 4142, ""end"": 4160}, {""label"": ""Value"", ""start"": 4283, ""end"": 4301}, {""label"": ""Value"", ""start"": 4424, ""end"": 4441}, {""label"": ""Value"", ""start"": 4565, ""end"": 4581}, {""label"": ""Value"", ""start"": 4706, ""end"": 4722}, {""label"": ""Value"", ""start"": 4847, ""end"": 4864}, {""label"": ""Value"", ""start"": 4990, ""end"": 5007}, {""label"": ""Value"", ""start"": 5134, ""end"": 5151}, {""label"": ""Value"", ""start"": 5277, ""end"": 5294}, {""label"": ""Value"", ""start"": 5418, ""end"": 5435}, {""label"": ""Value"", ""start"": 5561, ""end"": 5577}, {""label"": ""Value"", ""start"": 5704, ""end"": 5721}, {""label"": ""Value"", ""start"": 5847, ""end"": 5863}, {""label"": ""Value"", ""start"": 5990, ""end"": 6006}, {""label"": ""Value"", ""start"": 6097, ""end"": 6113}, {""label"": ""Value"", ""start"": 6220, ""end"": 6236}, {""label"": ""Value"", ""start"": 6332, ""end"": 6349}, {""label"": ""Value"", ""start"": 6444, ""end"": 6461}, {""label"": ""Value"", ""start"": 6558, ""end"": 6575}, {""label"": ""Value"", ""start"": 6681, ""end"": 6697}, {""label"": ""Value"", ""start"": 6793, ""end"": 6810}, {""label"": ""Value"", ""start"": 6907, ""end"": 6923}, {""label"": ""Value"", ""start"": 7030, ""end"": 7047}, {""label"": ""Value"", ""start"": 7142, ""end"": 7158}, {""label"": ""Value"", ""start"": 7254, ""end"": 7270}, {""label"": ""Value"", ""start"": 7368, ""end"": 7386}, {""label"": ""Value"", ""start"": 7480, ""end"": 7499}, {""label"": ""Value"", ""start"": 7603, ""end"": 7622}, {""label"": ""Value"", ""start"": 7726, ""end"": 7742}, {""label"": ""Value"", ""start"": 7849, ""end"": 7865}, {""label"": ""Value"", ""start"": 7961, ""end"": 7977}, {""label"": ""Value"", ""start"": 8084, ""end"": 8110}, {""label"": ""Value"", ""start"": 8207, ""end"": 8223}, {""label"": ""Value"", ""start"": 8330, ""end"": 8346}, {""label"": ""Value"", ""start"": 8453, ""end"": 8469}, {""label"": ""Value"", ""start"": 8576, ""end"": 8592}, {""label"": ""Value"", ""start"": 8699, ""end"": 8715}, {""label"": ""Value"", ""start"": 8822, ""end"": 8838}, {""label"": ""Value"", ""start"": 8936, ""end"": 8952}, {""label"": ""Value"", ""start"": 9059, ""end"": 9075}, {""label"": ""Value"", ""start"": 9182, ""end"": 9198}, {""label"": ""Value"", ""start"": 9305, ""end"": 9321}, {""label"": ""Value"", ""start"": 9428, ""end"": 9444}, {""label"": ""Amount"", ""start"": 2187, ""end"": 2200}, {""label"": ""Amount"", ""start"": 2328, ""end"": 2341}, {""label"": ""Amount"", ""start"": 2469, ""end"": 2482}, {""label"": ""Amount"", ""start"": 2610, ""end"": 2623}, {""label"": ""Amount"", ""start"": 2751, ""end"": 2764}, {""label"": ""Amount"", ""start"": 2892, ""end"": 2907}, {""label"": ""Amount"", ""start"": 3035, ""end"": 3048}, {""label"": ""Amount"", ""start"": 3176, ""end"": 3191}, {""label"": ""Amount"", ""start"": 3319, ""end"": 3334}, {""label"": ""Amount"", ""start"": 3462, ""end"": 3478}, {""label"": ""Amount"", ""start"": 3606, ""end"": 3619}, {""label"": ""Amount"", ""start"": 3747, ""end"": 3762}, {""label"": ""Amount"", ""start"": 3890, ""end"": 3905}, {""label"": ""Amount"", ""start"": 4033, ""end"": 4048}, {""label"": ""Amount"", ""start"": 4176, ""end"": 4189}, {""label"": ""Amount"", ""start"": 4317, ""end"": 4330}, {""label"": ""Amount"", ""start"": 4458, ""end"": 4471}, {""label"": ""Amount"", ""start"": 4599, ""end"": 4612}, {""label"": ""Amount"", ""start"": 4740, ""end"": 4753}, {""label"": ""Amount"", ""start"": 4881, ""end"": 4896}, {""label"": ""Amount"", ""start"": 5024, ""end"": 5040}, {""label"": ""Amount"", ""start"": 5168, ""end"": 5183}, {""label"": ""Amount"", ""start"": 5311, ""end"": 5324}, {""label"": ""Amount"", ""start"": 5452, ""end"": 5467}, {""label"": ""Amount"", ""start"": 5595, ""end"": 5610}, {""label"": ""Amount"", ""start"": 5738, ""end"": 5753}, {""label"": ""Amount"", ""start"": 5881, ""end"": 5896}, {""label"": ""Amount"", ""start"": 6024, ""end"": 6037}, {""label"": ""Amount"", ""start"": 6136, ""end"": 6160}, {""label"": ""Amount"", ""start"": 6259, ""end"": 6272}, {""label"": ""Amount"", ""start"": 6371, ""end"": 6384}, {""label"": ""Amount"", ""start"": 6483, ""end"": 6498}, {""label"": ""Amount"", ""start"": 6597, ""end"": 6621}, {""label"": ""Amount"", ""start"": 6720, ""end"": 6733}, {""label"": ""Amount"", ""start"": 6832, ""end"": 6847}, {""label"": ""Amount"", ""start"": 6946, ""end"": 6970}, {""label"": ""Amount"", ""start"": 7069, ""end"": 7082}, {""label"": ""Amount"", ""start"": 7181, ""end"": 7194}, {""label"": ""Amount"", ""start"": 7293, ""end"": 7308}, {""label"": ""Amount"", ""start"": 7407, ""end"": 7420}, {""label"": ""Amount"", ""start"": 7519, ""end"": 7543}, {""label"": ""Amount"", ""start"": 7642, ""end"": 7666}, {""label"": ""Amount"", ""start"": 7765, ""end"": 7789}, {""label"": ""Amount"", ""start"": 7888, ""end"": 7901}, {""label"": ""Amount"", ""start"": 8000, ""end"": 8024}, {""label"": ""Amount"", ""start"": 8123, ""end"": 8147}, {""label"": ""Amount"", ""start"": 8246, ""end"": 8270}, {""label"": ""Amount"", ""start"": 8369, ""end"": 8393}, {""label"": ""Amount"", ""start"": 8492, ""end"": 8516}, {""label"": ""Amount"", ""start"": 8615, ""end"": 8639}, {""label"": ""Amount"", ""start"": 8738, ""end"": 8762}, {""label"": ""Amount"", ""start"": 8861, ""end"": 8876}, {""label"": ""Amount"", ""start"": 8975, ""end"": 8999}, {""label"": ""Amount"", ""start"": 9098, ""end"": 9122}, {""label"": ""Amount"", ""start"": 9221, ""end"": 9245}, {""label"": ""Amount"", ""start"": 9344, ""end"": 9368}, {""label"": ""Amount"", ""start"": 9467, ""end"": 9491}, {""label"": ""Amount"", ""start"": 9590, ""end"": 9596}]" +"44","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +McClintock, Scott H. + +Special Assistant to the Transition, Office of the Transition, Department of State +Date of Appointment: 02/15/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +Scott H. McClintock +User ID: + +03/15/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +Joshua A. Kretman +User ID: + +03/15/2017 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +Joshua A. Kretman +User ID: + +03/15/2017 + +Reviewer: + +eSigned in FDM by: + +Joshua A. Kretman +User ID: + +03/15/2017 + +U.S. Office of Government Ethics Certification +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 Committee on Arrangements, RNC Cleveland, OH, USA Non -Profit Organiza +tion + +Employee 02/2016 08/2016 + +2 Mississippi 2016 Jackson, MS, USA Non -Profit Organiza +tion + +Director 11/2015 01/2016 + +3 Office of the Governor Jackson, MS, USA Government Employee 06/2013 11/2015 + +4 President -Elect Transition Washington, DC, USA Non -Profit Organiza +tion + +Volunteer 12/2016 01/2017 + +5 The Hawthorn Group, LC Alexandria, VA, USA Business Enterprise Employee 09/2016 12/2016 + +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Governor Bryant Inauguration N/A Salary $13000 + +2 Hawthorn Group N/A Salary $13602 + +3 Imagine Mississippi N/A Salary $13000 + +4 Republican National Convention N/A Salary $25898 + +3. Filer's Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +# SOURCE NAME CITY, STATE BRIEF DESCRIPTION OF DUTIES + +1 Friends of Phil Bryant Jackson, MS Worked on the Presidential Transition + +2 Mississippi 2016 Jackson, MS Served as Executive Director for the Inaugu +ration of Mississippi's governor, planning +11 public and private events for over 10,00 +0 people + +3 Republican National Convention Cleveland, OH Worked in Operations setting up the politic +al convention + +4 State of Mississippi Jackson, MS Served as principle aide to the governor, c +oordinating travel and logistics + +5 The Hawthorn Group Alexandria, VA Associate handling public affairs campaign + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Regions Bank Money Market N/A $1,001 - $15,000 None (or less than +$201) +2 Regions Bank Savings N/A None (or less than None (or less than + $1,001) $201) +3 Regions Bank Checking Account N/A $1,001 - $15,000 None (or less than + $201) +4 Wells Fargo Checking N/A $1,001 - $15,000 None (or less than + $201) +5 Wells Fargo Savings N/A $1,001 - $15,000 None (or less than + +$201) + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1810, ""end"": 1838}, {""label"": ""Description"", ""start"": 1860, ""end"": 1874}, {""label"": ""Description"", ""start"": 1896, ""end"": 1915}, {""label"": ""Description"", ""start"": 1937, ""end"": 1967}, {""label"": ""Description"", ""start"": 2941, ""end"": 2966}, {""label"": ""Description"", ""start"": 3016, ""end"": 3037}, {""label"": ""Description"", ""start"": 3187, ""end"": 3217}, {""label"": ""Description"", ""start"": 3358, ""end"": 3380}, {""label"": ""Description"", ""start"": 3529, ""end"": 3550}, {""label"": ""Amount"", ""start"": 1850, ""end"": 1856}, {""label"": ""Amount"", ""start"": 1886, ""end"": 1892}, {""label"": ""Amount"", ""start"": 1927, ""end"": 1933}, {""label"": ""Amount"", ""start"": 1979, ""end"": 1985}, {""label"": ""Amount"", ""start"": 2988, ""end"": 3012}, {""label"": ""Amount"", ""start"": 3084, ""end"": 3106}, {""label"": ""Amount"", ""start"": 3178, ""end"": 3183}, {""label"": ""Amount"", ""start"": 3255, ""end"": 3354}, {""label"": ""Amount"", ""start"": 3426, ""end"": 3525}, {""label"": ""Amount"", ""start"": 3597, ""end"": 3626}, {""label"": ""Value"", ""start"": 2971, ""end"": 2987}, {""label"": ""Value"", ""start"": 3053, ""end"": 3071}, {""label"": ""Value"", ""start"": 3147, ""end"": 3154}, {""label"": ""Value"", ""start"": 3224, ""end"": 3253}, {""label"": ""Value"", ""start"": 3395, ""end"": 3424}, {""label"": ""Value"", ""start"": 3566, ""end"": 3595}]" +"50","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +Smith, Jared L. + +TBD, Bureau of European and Eurasian Affairs, Department of State +Date of Appointment: 01/23/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +Jared L. Smith +User ID: + +02/16/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +03/07/2017 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +02/28/2017 + +Reviewer: + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +03/07/2017 + +U.S. Office of Government Ethics Certification +1. Filer Positions Held outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 Donald J. Trump for President, Inc. New York, NY, USA Non -Profit Organiza +tion + +Consultant 02/2016 04/2016 + +2 Donald J. Trump for President, Inc. New York, NY, USA Non -Profit Organiza +tion + +Employee 06/2016 01/2017 + +2. Filer's Employment Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Donald J Trump for President Salary N/A Salary $29873 + +3. Filer Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +# SOURCE NAME CITY, STATE BRIEF DESCRIPTION OF DUTIES + +1 Donald J. Trump for President New York, NY Trip Coordinator, organized the Campaign's +travel + +5. Spouse's Employment Assets and Income + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 American Airlines Group Inc Stock (AAL) N/A $1,001 - $15,000 None (or less than +$201) + +2 Wells Fargo & Co. Stock (WFC) N/A $1,001 - $15,000 None (or less than +$201) + +3 Russell Invt Co Balanced Strategy Fd Cl C (RBLCX) Yes $1,001 - $15,000 None (or less than +$201) + +4 Russell Invt Co Growth Strategy Fund Fd Cl C (RALCX) Yes $1,001 - $15,000 None (or less than +$201) + +5 US Government Money Market Fund RBC Select Class (TUS +XX) + +6 Non -employee compensation Donald J Trump for Pres. N/A Income from personal +services + +N/A $1,001 - $15,000 None (or less than +$201) + +$3750 + +7. Transactions + +This report has no reported Transactions +8. Liabilities + +# CREDITOR NAME TYPE OF LIABILITY AMOUNT + +YEAR +INCURRED + +INTEREST +RATE TERM + +1 VW Credit Leasing Ltd Auto Lease $10,001 - +$15,000 + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside the United States Government + +2016 Monthly 36 Months + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets and Income + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets and Income + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1505, ""end"": 1540}, {""label"": ""Description"", ""start"": 2039, ""end"": 2078}, {""label"": ""Description"", ""start"": 2128, ""end"": 2157}, {""label"": ""Description"", ""start"": 2207, ""end"": 2256}, {""label"": ""Description"", ""start"": 2306, ""end"": 2358}, {""label"": ""Description"", ""start"": 2408, ""end"": 2465}, {""label"": ""Description"", ""start"": 2469, ""end"": 2520}, {""label"": ""Amount"", ""start"": 1552, ""end"": 1558}, {""label"": ""Amount"", ""start"": 2100, ""end"": 2124}, {""label"": ""Amount"", ""start"": 2179, ""end"": 2203}, {""label"": ""Amount"", ""start"": 2278, ""end"": 2302}, {""label"": ""Amount"", ""start"": 2380, ""end"": 2404}, {""label"": ""Amount"", ""start"": 2577, ""end"": 2608}, {""label"": ""Value"", ""start"": 2083, ""end"": 2099}, {""label"": ""Value"", ""start"": 2162, ""end"": 2178}, {""label"": ""Value"", ""start"": 2261, ""end"": 2277}, {""label"": ""Value"", ""start"": 2363, ""end"": 2379}, {""label"": ""Value"", ""start"": 2560, ""end"": 2576}]" +"53","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel +Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +Williams, Timothy +Deputy Director of External Affairs, Department of the Interior +Date of Appointment: 03/18/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: + +Special Assistant to the Secretary: (01/20/2017 - 05/07/2017) + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +/s/ Timothy Williams [electronically signed by Timothy Williams on 2017-06-19 14:51:52 in FDonline] + +Agency Ethics Official's Opinion - On the basis of information contained in this report, I conclude that the filer is in compliance with applicable laws and regulations +(subject to any comments below) + +/s/ Tia Barner, Ethics Counselor [electronically signed by Tia Barner on 2017-06-19 15:12:09 in FDonline] + +Other review conducted by: + +U.S. Office of Government Ethics Certification +1. Filer's Positions Held Outside United States Government + +None + +2. Filer's Employment Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Americans for Prosperity (401k) Nationwide No + +1.1 (Mutual Fund) SSGRX-Blackrock Fds Energy & Resources Ptf Investor C Yes None (or less than $1,001) None (or less than $201) + +1.2 (Mutual Fund) EVIBX-Eaton Vance Income Fund of Boston Class A Yes None (or less than $1,001) None (or less than $201) + +1.3 (Mutual Fund) VSEAX-Jpmorgan Small Cap Equity Fund Class A Yes None (or less than $1,001) None (or less than $201) + +3. Filer's Employment Agreements and Arrangements + +# EMPLOYER OR OTHER PARTY TO AGREEMENT/ARRANGEMENT CITY, STATE STATUS AND TERMS DATE + +1 Americans for Prosperity Arlington, VA, US Defined Contribution Plan 03/2015 + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +None +5. Spouse's Employment Assets and Income + +None + +6. Other Assets and Income + +None + +7. Transactions + +(N/A) - Not required for this type of report + +8. Liabilities + +None + +9. Gifts and Reimbursements +(N/A) - Not required for this type of report +Endnotes + +PART # ENDNOTE +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable +even if the filer did not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) +positions solely of an honorary nature; (3) positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; +and (5) passive investment interests as a limited partner or non -managing member of a limited liability company. + +2. Filer's Employment Assets and Income + +Part 2 discloses the following: + +Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, +honoraria, scholarships, and prizes) +Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or +(2) produced more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their +underlying holdings as appropriate, deferred compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, +employment, or other income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount +of income is $0 - $200 or if the asset qualifies as an excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), +such as the following: + +Future employment +Leave of absence +Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current +employer) +Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan +Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share +of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting +period. The filer discloses payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the +source made its payment to the filer's employer and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the +services for which the client is paying. + +5. Spouse's Employment Assets and Income +Part 5 discloses the following: + +Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and +partnership share) +Sources of honoraria for the filer's spouse greater than $200 during the reporting period +Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater +than $1,000 or (2) produced more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans +/accounts and their underlying holdings as appropriate, deferred compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, +employment, or other income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of +income is $0 - $200 or if the asset qualifies as an excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding +honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment +income during the reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and +dependent children. This section does not include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) +income or retirement benefits associated with United States Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money +market accounts) at a single financial institution with a value of $5,000 or less (unless more than $200 of income was produced). Additional exceptions apply. Note: The +type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child +during reporting period. This section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., +checking, savings, CDs, money market accounts) and money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings +Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the +following types of liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, +household furniture, or appliances, unless the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the +outstanding liability did not exceed $10,000 at the end of the reporting period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not +include the following items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local +governments; (3) bequests and other forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) +gifts of hospitality (food, lodging, entertainment) at the donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children +totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act +of 2012 (Pub. L. 112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The +primary use of the information on this report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may +also be disclosed upon request to any requesting person in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect +applications for public access of your own form upon request. Additional disclosures of the information on this report may be made: (1) to any requesting person, subject +to the limitation contained in section 208(d)(1) of title 18, any determination granting an exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a +Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential violations of law or regulation; (3) to another Federal +agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with a judge -issued subpoena; (4) to a +source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records Administration or +the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a +party to litigation or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new +office, department or agency when an employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in +response to an inquiry made on behalf of an individual who is the subject of the record; (10) to contractors and other non -Government employees working on a contract, +service or assignment for the Federal Government when necessary to accomplish a function related to an OGE Government -wide system of records; and (11) on the +OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an individual nominated by the President to a position requiring +Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and +completing the form. Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, +to the Program Counsel, U.S. Office of Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information +unless it displays a currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e). +Reviewer Comments and Submission History +for Timothy Williams + +06/15/2017 12:58:28 +Filing submitted","[{""label"": ""Description"", ""start"": 1258, ""end"": 1300}, {""label"": ""Description"", ""start"": 1309, ""end"": 1376}, {""label"": ""Description"", ""start"": 1438, ""end"": 1499}, {""label"": ""Description"", ""start"": 1561, ""end"": 1619}, {""label"": ""Value"", ""start"": 1381, ""end"": 1407}, {""label"": ""Value"", ""start"": 1504, ""end"": 1530}, {""label"": ""Value"", ""start"": 1624, ""end"": 1650}, {""label"": ""Amount"", ""start"": 1408, ""end"": 1432}, {""label"": ""Amount"", ""start"": 1531, ""end"": 1555}, {""label"": ""Amount"", ""start"": 1651, ""end"": 1675}]" +"55","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel +Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +Barnett, Zachary +Special Assistant, the Office of the Administrator, Small Business Administration +Date of Appointment: 04/30/2018 + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +/s/ Zachary Barnett [electronically signed by Zachary Barnett on 2018-06-28 11:17:43 in FDonline] + +Filed with Extension. Extended for 30 days + +Agency Ethics Official's Opinion - On the basis of information contained in this report, I conclude that the filer is in compliance with applicable laws and regulations +(subject to any comments below) + +/s/ Marilyn Barnes, Super Administrator [electronically signed by Marilyn Barnes on 2018-08-21 16:13:41 in FDonline] + +Other review conducted by: + +U.S. Office of Government Ethics Certification +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE ORG TYPE POSITION FROM TO + +1 Louisiana State University (LSU) Student Government Baton Rouge, LA, US Student Government Chief Advisor 05/16/2016 05/12/2017 + +2. Filer's Employment Assets and Income + +None + +3. Filer's Employment Agreements and Arrangements + +None + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +None + +5. Spouse's Employment Assets and Income +None + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 (Cash Deposit/Savings) U.S. Bank Covington, LA, US Deposit N/A $1,001 - $15,000 None (or less than $201) + +2 (Self EI) In Field Strategies Bozeman, MT, US N/A Salary $965.00 + +7. Transactions + +(N/A) - Not required for this type of report + +8. Liabilities + +None + +9. Gifts and Reimbursements + +(N/A) - Not required for this type of report + +Endnotes + +PART # ENDNOTE +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable +even if the filer did not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) +positions solely of an honorary nature; (3) positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; +and (5) passive investment interests as a limited partner or non -managing member of a limited liability company. + +2. Filer's Employment Assets and Income + +Part 2 discloses the following: + +Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, +honoraria, scholarships, and prizes) +Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or +(2) produced more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their +underlying holdings as appropriate, deferred compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, +employment, or other income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount +of income is $0 - $200 or if the asset qualifies as an excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), +such as the following: + +Future employment +Leave of absence +Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current +employer) +Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan +Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share +of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting +period. The filer discloses payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the +source made its payment to the filer's employer and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the +services for which the client is paying. + +5. Spouse's Employment Assets and Income +Part 5 discloses the following: + +Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and +partnership share) +Sources of honoraria for the filer's spouse greater than $200 during the reporting period +Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater +than $1,000 or (2) produced more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans +/accounts and their underlying holdings as appropriate, deferred compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, +employment, or other income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of +income is $0 - $200 or if the asset qualifies as an excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding +honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment +income during the reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and +dependent children. This section does not include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) +income or retirement benefits associated with United States Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money +market accounts) at a single financial institution with a value of $5,000 or less (unless more than $200 of income was produced). Additional exceptions apply. Note: The +type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child +during reporting period. This section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., +checking, savings, CDs, money market accounts) and money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings +Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the +following types of liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, +household furniture, or appliances, unless the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the +outstanding liability did not exceed $10,000 at the end of the reporting period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not +include the following items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local +governments; (3) bequests and other forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) +gifts of hospitality (food, lodging, entertainment) at the donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children +totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act +of 2012 (Pub. L. 112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The +primary use of the information on this report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may +also be disclosed upon request to any requesting person in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect +applications for public access of your own form upon request. Additional disclosures of the information on this report may be made: (1) to any requesting person, subject +to the limitation contained in section 208(d)(1) of title 18, any determination granting an exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a +Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential violations of law or regulation; (3) to another Federal +agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with a judge -issued subpoena; (4) to a +source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records Administration or +the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a +party to litigation or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new +office, department or agency when an employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in +response to an inquiry made on behalf of an individual who is the subject of the record; (10) to contractors and other non -Government employees working on a contract, +service or assignment for the Federal Government when necessary to accomplish a function related to an OGE Government -wide system of records; and (11) on the +OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an individual nominated by the President to a position requiring +Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and +completing the form. Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, +to the Program Counsel, U.S. Office of Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information +unless it displays a currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e). +Reviewer Comments and Submission History +for Zachary Barnett + +06/28/2018 11:17:43 +Filing submitted + +06/27/2018 12:13:55 +Filing submitted + +Marilyn Barnes + +05/25/2018 14:43:08 +Extension granted to 06/29/2018","[{""label"": ""Description"", ""start"": 1569, ""end"": 1627}, {""label"": ""Description"", ""start"": 1677, ""end"": 1722}, {""label"": ""Value"", ""start"": 1632, ""end"": 1648}, {""label"": ""Amount"", ""start"": 1649, ""end"": 1673}, {""label"": ""Amount"", ""start"": 1734, ""end"": 1741}]" +"57","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +Badenhop, Kimberly A. + +Senior Advisor, M, Department of State +Date of Appointment: 07/06/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +Kimberly A. Badenhop +User ID: + +07/10/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +07/12/2017 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +07/11/2017 + +Reviewer: + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +07/12/2017 + +U.S. Office of Government Ethics Certification +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 BisMan Transit Board Bismarck, ND, USA Non -Profit Organiza +tion + +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +Board Member 01/2015 04/2017 + +1 Retirment Security Plan (NRECA Pension Plan) Yes $15,001 - $50,000 None (or less than +$201) + +2 401K Vanguard Account No $15,001 - $50,000 None (or less than +$201) + +2.1 Vanguard Total Stock Market Index Fund Insitutional S +hares + +Yes $1,001 - $15,000 None (or less than +$201) + +Yes $1,001 - $15,000 None (or less than +$201) + +Yes $1,001 - $15,000 None (or less than +$201) + +Yes $1,001 - $15,000 None (or less than +$201) + +2.2 Vanguard Total International Stock Index Fund Investo +r Shares + +2.3 Vanguard Total Bond Market II Index Fund Investor Sha +res + +2.4 Vanguard Total International Bond Index Fund Admiral +Shares + +3 Attitude's N/A Salary $3073 + +4 Basin Electric Power Cooperative N/A Salary $249813 + +5 IntelliShop Mystery Shopping N/A Independent Contracto $721 + +6 Kirkwood ACE Hardware N/A Salary $978 + +3. Filer's Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +This report has no reported Compensation Exceeding $5,000 + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Residential Real Estate, Bismarck, North Dakota N/A $250,001 - $500,000 Rent and Royalties $5,001 - $15,000 + +7. Transactions + +This report has no reported Transactions +8. Liabilities + +# CREDITOR NAME TYPE OF LIABILITY AMOUNT YEAR INCURRED INTEREST RATE TERM +1 PNC Mortgage Mortgage, Bismarck, ND, USA $250,001 - 2013 3.25% 30 years + $500,000 +2 SoFi Loan $15,001 - 2015 8.32% 7 years + $50,000 +3 United States Senate FCU Credit Card/Revolving Charge Account $10,001 - 2016 11.0% Revolving Cred + $15,000 +4 United States Senate FCU Loan $10,001 - 2016 7.24% 5 years + $15,000 + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1392, ""end"": 1436}, {""label"": ""Description"", ""start"": 1487, ""end"": 1508}, {""label"": ""Description"", ""start"": 1560, ""end"": 1619}, {""label"": ""Description"", ""start"": 1813, ""end"": 1875}, {""label"": ""Description"", ""start"": 1881, ""end"": 1938}, {""label"": ""Description"", ""start"": 1944, ""end"": 2003}, {""label"": ""Description"", ""start"": 2007, ""end"": 2017}, {""label"": ""Description"", ""start"": 2038, ""end"": 2070}, {""label"": ""Description"", ""start"": 2093, ""end"": 2121}, {""label"": ""Description"", ""start"": 2156, ""end"": 2177}, {""label"": ""Description"", ""start"": 2605, ""end"": 2652}, {""label"": ""Value"", ""start"": 1441, ""end"": 1458}, {""label"": ""Value"", ""start"": 1512, ""end"": 1529}, {""label"": ""Value"", ""start"": 1625, ""end"": 1641}, {""label"": ""Value"", ""start"": 1672, ""end"": 1688}, {""label"": ""Value"", ""start"": 1719, ""end"": 1735}, {""label"": ""Value"", ""start"": 1766, ""end"": 1782}, {""label"": ""Value"", ""start"": 2657, ""end"": 2676}, {""label"": ""Amount"", ""start"": 1459, ""end"": 1483}, {""label"": ""Amount"", ""start"": 1530, ""end"": 1554}, {""label"": ""Amount"", ""start"": 1642, ""end"": 1666}, {""label"": ""Amount"", ""start"": 1689, ""end"": 1713}, {""label"": ""Amount"", ""start"": 1736, ""end"": 1760}, {""label"": ""Amount"", ""start"": 1783, ""end"": 1807}, {""label"": ""Amount"", ""start"": 2029, ""end"": 2034}, {""label"": ""Amount"", ""start"": 2082, ""end"": 2089}, {""label"": ""Amount"", ""start"": 2148, ""end"": 2152}, {""label"": ""Amount"", ""start"": 2189, ""end"": 2193}, {""label"": ""Amount"", ""start"": 2696, ""end"": 2712}]" +"64","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel +Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +McCracken, Erin S +Deputy Associate Administrator, Small Business Administration +Date of Appointment: 07/23/2018 + +Other Federal Government Positions Held During the Preceding 12 Months: + +Communications Director, U.S. House of Representatives' Committee on House Administration: (02/01/2014 - 07/22/2018) + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +/s/ Erin McCracken [electronically signed by Erin McCracken on 2018-08-14 21:34:52 in FDonline] + +Agency Ethics Official's Opinion - On the basis of information contained in this report, I conclude that the filer is in compliance with applicable laws and regulations +(subject to any comments below) + +/s/ Marilyn Barnes, Super Administrator [electronically signed by Marilyn Barnes on 2018-08-17 17:26:42 in FDonline] + +Other review conducted by: + +U.S. Office of Government Ethics Certification +1. Filer's Positions Held Outside United States Government + +None + +2. Filer's Employment Assets and Income + +None + +3. Filer's Employment Agreements and Arrangements + +None + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +None + +5. Spouse's Employment Assets and Income +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 (S) Clark Construction Group, LLC (401k) Vanguard No + +1.1 (Mutual Fund) Vanguard Fund Number 5828 -Clark Company Contribution Fund Yes $50,001 - $100,000 None (or less than $201) + +1.2 (Mutual Fund) HIAOX-Hartford International Opportunities HLS Fund Class 1A Yes $1,001 - $15,000 None (or less than $201) + +1.3 (Mutual Fund) VTRLX-Vanguard Institutional Target Retirement 2050 Fund Yes $100,001 - $250,000 None (or less than $201) + +2 (S) (Spouse EI) Clark Construction Group, LLC Bethesda, MD, US N/A + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 (S) (Stock) JPM JP Morgan N/A $1,001 - $15,000 Dividends, Capital Gains None (or less than $201) +2 (S) (Stock) NSC Norfolk Southern N/A $1,001 - $15,000 Dividends, Capital Gains None (or less than $201) +3 (S) (Stock) DWDP DowDuPont N/A $1,001 - $15,000 Dividends, Capital Gains None (or less than $201) +4 (S) (Stock) ETP Energy Transfer Partners N/A $1,001 - $15,000 Dividends, Capital Gains None (or less than $201) +5 (S) (Stock) D Dominion N/A $1,001 - $15,000 Dividends, Capital Gains None (or less than $201) +6 (S) (Stock) CG Carlyle Group N/A $1,001 - $15,000 Dividends, Capital Gains None (or less than $201) +7 (J) (Stock) AAPL Apple N/A $1,001 - $15,000 Dividends, Capital Gains None (or less than $201) +8 (J) (Stock) ZUO Zuora N/A $1,001 - $15,000 Capital Gains None (or less than $201) +9 (J) (Stock) ABBV Abbvie N/A $1,001 - $15,000 Dividends, Capital Gains None (or less than $201) +10 (S) (Stock) GE General Electric N/A $1,001 - $15,000 Dividends, Capital Gains None (or less than $201) +11 (S) (Stock) TOT Total N/A $1,001 - $15,000 Dividends, Capital Gains None (or less than $201) +12 (S) (Bond) US Savings Bonds N/A $1,001 - $15,000 Interest None (or less than $201) +13 (J) (Cash Deposit/Savings) Capital One McLean, VA, US N/A $15,001 - $50,000 Interest $201 - $1,000 +14 (J) (Cash Deposit/Savings) USAA San Antonio, TX, US N/A $1,001 - $15,000 Interest None (or less than $201) +15 (S) (Cash Deposit/Savings) Wells Fargo Arlington, VA, US Checking N/A $1,001 - $15,000 Interest None (or less than $201) +16 (S) (ETF) DFE Yes $1,001 - $15,000 None (or less than $201) +17 (S) (ETF) DGS Yes None (or less than $1,001) None (or less than $201) + +18 (S) (ETF) EPI Yes None (or less than $1,001) None (or less than $201) + +7. Transactions + +(N/A) - Not required for this type of report + +8. Liabilities + +None + +9. Gifts and Reimbursements + +(N/A) - Not required for this type of report +Endnotes + +PART # ENDNOTE + +6 12 Aggregate value of 14 $50 savings bonds is approx $1,200 + +Aggregate of multiple savings accounts, money market account, and Certificates of Deposit held with +6 13 +Capital One + +6 14 Include aggregate of several checking and one savings accounts. +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable +even if the filer did not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) +positions solely of an honorary nature; (3) positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; +and (5) passive investment interests as a limited partner or non -managing member of a limited liability company. + +2. Filer's Employment Assets and Income + +Part 2 discloses the following: + +Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, +honoraria, scholarships, and prizes) +Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or +(2) produced more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their +underlying holdings as appropriate, deferred compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, +employment, or other income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount +of income is $0 - $200 or if the asset qualifies as an excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), +such as the following: + +Future employment +Leave of absence +Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current +employer) +Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan +Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share +of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting +period. The filer discloses payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the +source made its payment to the filer's employer and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the +services for which the client is paying. + +5. Spouse's Employment Assets and Income +Part 5 discloses the following: + +Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and +partnership share) +Sources of honoraria for the filer's spouse greater than $200 during the reporting period +Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater +than $1,000 or (2) produced more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans +/accounts and their underlying holdings as appropriate, deferred compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, +employment, or other income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of +income is $0 - $200 or if the asset qualifies as an excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding +honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment +income during the reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and +dependent children. This section does not include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) +income or retirement benefits associated with United States Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money +market accounts) at a single financial institution with a value of $5,000 or less (unless more than $200 of income was produced). Additional exceptions apply. Note: The +type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child +during reporting period. This section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., +checking, savings, CDs, money market accounts) and money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings +Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the +following types of liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, +household furniture, or appliances, unless the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the +outstanding liability did not exceed $10,000 at the end of the reporting period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not +include the following items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local +governments; (3) bequests and other forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) +gifts of hospitality (food, lodging, entertainment) at the donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children +totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act +of 2012 (Pub. L. 112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The +primary use of the information on this report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may +also be disclosed upon request to any requesting person in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect +applications for public access of your own form upon request. Additional disclosures of the information on this report may be made: (1) to any requesting person, subject +to the limitation contained in section 208(d)(1) of title 18, any determination granting an exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a +Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential violations of law or regulation; (3) to another Federal +agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with a judge -issued subpoena; (4) to a +source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records Administration or +the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a +party to litigation or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new +office, department or agency when an employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in +response to an inquiry made on behalf of an individual who is the subject of the record; (10) to contractors and other non -Government employees working on a contract, +service or assignment for the Federal Government when necessary to accomplish a function related to an OGE Government -wide system of records; and (11) on the +OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an individual nominated by the President to a position requiring +Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and +completing the form. Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, +to the Program Counsel, U.S. Office of Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information +unless it displays a currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1491, ""end"": 1540}, {""label"": ""Description"", ""start"": 1549, ""end"": 1621}, {""label"": ""Description"", ""start"": 1675, ""end"": 1749}, {""label"": ""Description"", ""start"": 1801, ""end"": 1871}, {""label"": ""Description"", ""start"": 1924, ""end"": 1986}, {""label"": ""Description"", ""start"": 2159, ""end"": 2184}, {""label"": ""Description"", ""start"": 2305, ""end"": 2337}, {""label"": ""Description"", ""start"": 2451, ""end"": 2477}, {""label"": ""Description"", ""start"": 2597, ""end"": 2637}, {""label"": ""Description"", ""start"": 2743, ""end"": 2765}, {""label"": ""Description"", ""start"": 2889, ""end"": 2917}, {""label"": ""Description"", ""start"": 3035, ""end"": 3057}, {""label"": ""Description"", ""start"": 3181, ""end"": 3202}, {""label"": ""Description"", ""start"": 3327, ""end"": 3350}, {""label"": ""Description"", ""start"": 3473, ""end"": 3504}, {""label"": ""Description"", ""start"": 3619, ""end"": 3640}, {""label"": ""Description"", ""start"": 3765, ""end"": 3792}, {""label"": ""Description"", ""start"": 3911, ""end"": 3964}, {""label"": ""Description"", ""start"": 4046, ""end"": 4097}, {""label"": ""Description"", ""start"": 4192, ""end"": 4257}, {""label"": ""Description"", ""start"": 4338, ""end"": 4351}, {""label"": ""Value"", ""start"": 1626, ""end"": 1644}, {""label"": ""Value"", ""start"": 1754, ""end"": 1770}, {""label"": ""Value"", ""start"": 1876, ""end"": 1895}, {""label"": ""Value"", ""start"": 2231, ""end"": 2247}, {""label"": ""Value"", ""start"": 2377, ""end"": 2393}, {""label"": ""Value"", ""start"": 2523, ""end"": 2539}, {""label"": ""Value"", ""start"": 2669, ""end"": 2685}, {""label"": ""Value"", ""start"": 2815, ""end"": 2831}, {""label"": ""Value"", ""start"": 2961, ""end"": 2977}, {""label"": ""Value"", ""start"": 3107, ""end"": 3123}, {""label"": ""Value"", ""start"": 3253, ""end"": 3269}, {""label"": ""Value"", ""start"": 3399, ""end"": 3415}, {""label"": ""Value"", ""start"": 3545, ""end"": 3561}, {""label"": ""Value"", ""start"": 3691, ""end"": 3707}, {""label"": ""Value"", ""start"": 3837, ""end"": 3853}, {""label"": ""Value"", ""start"": 3983, ""end"": 4000}, {""label"": ""Value"", ""start"": 4118, ""end"": 4134}, {""label"": ""Value"", ""start"": 4264, ""end"": 4280}, {""label"": ""Value"", ""start"": 4410, ""end"": 4426}, {""label"": ""Amount"", ""start"": 1645, ""end"": 1669}, {""label"": ""Amount"", ""start"": 1771, ""end"": 1795}, {""label"": ""Amount"", ""start"": 1896, ""end"": 1920}, {""label"": ""Amount"", ""start"": 2276, ""end"": 2300}, {""label"": ""Amount"", ""start"": 2422, ""end"": 2446}, {""label"": ""Amount"", ""start"": 2568, ""end"": 2592}, {""label"": ""Amount"", ""start"": 2714, ""end"": 2738}, {""label"": ""Amount"", ""start"": 2860, ""end"": 2884}, {""label"": ""Amount"", ""start"": 3006, ""end"": 3030}, {""label"": ""Amount"", ""start"": 3152, ""end"": 3176}, {""label"": ""Amount"", ""start"": 3298, ""end"": 3322}, {""label"": ""Amount"", ""start"": 3444, ""end"": 3468}, {""label"": ""Amount"", ""start"": 3590, ""end"": 3614}, {""label"": ""Amount"", ""start"": 3736, ""end"": 3760}, {""label"": ""Amount"", ""start"": 3882, ""end"": 3906}, {""label"": ""Amount"", ""start"": 4028, ""end"": 4041}, {""label"": ""Amount"", ""start"": 4163, ""end"": 4187}, {""label"": ""Amount"", ""start"": 4309, ""end"": 4333}, {""label"": ""Amount"", ""start"": 4455, ""end"": 4479}]" +"66","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +Mills, Darlene C. + +Special Advisor to Transition, Office of the Secretary, Department of State +Date of Appointment: 02/01/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +Darlene C. Mills +User ID: + +02/23/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +03/02/2017 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +02/24/2017 + +Reviewer: + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +03/02/2017 + +U.S. Office of Government Ethics Certification +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 ExxonMobil Washington, DC, USA Business Enterprise Employee 05/1979 01/2017 + +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 ExxonMobil Company ESOP N/A $100,001 - $250,000 Dividends $2,501 - $5,000 + +2 ExxonMobil Stock N/A $100,001 - $250,000 Dividends $2,501 - $5,000 + +3 Common Assets - Stable Value Option Fund N/A $50,001 - $100,000 None (or less than +$201) + +4 ExxonMobil Jan 2017 N/A Salary $10750 + +5 xonMobil (2016) N/A Salary $129000 + +3. Filer's Employment Agreements and Arrangements + +EMPLOYER OR OTHER PARTY TO + +# AGREEMENT/ARRANGEMENT CITY/STATE STATUS AND TERMS DATE + +1 ExxonMobil Washington, DC, USA Retirement Benefits: I am entitled to receive my ret +irement benefits from ExxonMobil, but will wait until +my government service is over. + +2 ExxonMobil Washington, DC, USA Health and Dental Benefits: I will keep the health a +nd dental benefits for my spouse and me, I will pay f +or these benefits as long as I am a government employ +ee + +05/1979 + +05/1979 + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +This report has no reported Compensation Exceeding $5,000 + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +This report has no reported Assets + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1402, ""end"": 1425}, {""label"": ""Description"", ""start"": 1479, ""end"": 1495}, {""label"": ""Description"", ""start"": 1549, ""end"": 1589}, {""label"": ""Description"", ""start"": 1641, ""end"": 1660}, {""label"": ""Description"", ""start"": 1682, ""end"": 1697}, {""label"": ""Value"", ""start"": 1430, ""end"": 1449}, {""label"": ""Value"", ""start"": 1500, ""end"": 1519}, {""label"": ""Value"", ""start"": 1594, ""end"": 1612}, {""label"": ""Amount"", ""start"": 1460, ""end"": 1475}, {""label"": ""Amount"", ""start"": 1530, ""end"": 1545}, {""label"": ""Amount"", ""start"": 1613, ""end"": 1637}, {""label"": ""Amount"", ""start"": 1672, ""end"": 1678}, {""label"": ""Amount"", ""start"": 1709, ""end"": 1716}]" +"68","136","Termination Report | U.S. Office of Government Ethics; 5 C.F.R part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel +Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +Guiden, Nancy A +Director, Faith -Based and Community Initiatives, Small Business Administration +Date of Appointment: 05/28/2017 +Date of Termination: 09/16/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: + +Special Assistant to the Secretary: (01/20/2017 - 05/27/2017) + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +/s/ Nancy Guiden [electronically signed by Nancy Guiden on 2017-11-15 13:24:21 in FDonline] + +Filed with Extension. Extended for 29 days + +Agency Ethics Official's Opinion - On the basis of information contained in this report, I conclude that the filer is in compliance with applicable laws and regulations +(subject to any comments below) + +/s/ Marilyn Barnes, Super Administrator [electronically signed by Marilyn Barnes on 2017-11-15 14:23:10 in FDonline] + +Other review conducted by: +U.S. Office of Government Ethics Certification +1. Filer's Positions Held Outside United States Government + +None + +2. Filer's Employment Assets and Income + +None + +3. Filer's Employment Agreements and Arrangements + +None + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +(N/A) - Not required for this type of report + +5. Spouse's Employment Assets and Income +None + +6. Other Assets and Income + +None + +7. Transactions + +None + +8. Liabilities + +None + +9. Gifts and Reimbursements + +None + +Endnotes + +PART # ENDNOTE +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable +even if the filer did not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) +positions solely of an honorary nature; (3) positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; +and (5) passive investment interests as a limited partner or non -managing member of a limited liability company. + +2. Filer's Employment Assets and Income + +Part 2 discloses the following: + +Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, +honoraria, scholarships, and prizes) +Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or +(2) produced more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their +underlying holdings as appropriate, deferred compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, +employment, or other income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount +of income is $0 - $200 or if the asset qualifies as an excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), +such as the following: + +Future employment +Leave of absence +Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current +employer) +Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan +Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share +of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting +period. The filer discloses payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the +source made its payment to the filer's employer and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the +services for which the client is paying. + +5. Spouse's Employment Assets and Income +Part 5 discloses the following: + +Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and +partnership share) +Sources of honoraria for the filer's spouse greater than $200 during the reporting period +Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater +than $1,000 or (2) produced more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans +/accounts and their underlying holdings as appropriate, deferred compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, +employment, or other income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of +income is $0 - $200 or if the asset qualifies as an excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding +honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment +income during the reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and +dependent children. This section does not include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) +income or retirement benefits associated with United States Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money +market accounts) at a single financial institution with a value of $5,000 or less (unless more than $200 of income was produced). Additional exceptions apply. Note: The +type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child +during reporting period. This section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., +checking, savings, CDs, money market accounts) and money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings +Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the +following types of liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, +household furniture, or appliances, unless the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the +outstanding liability did not exceed $10,000 at the end of the reporting period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not +include the following items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local +governments; (3) bequests and other forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) +gifts of hospitality (food, lodging, entertainment) at the donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children +totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act +of 2012 (Pub. L. 112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The +primary use of the information on this report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may +also be disclosed upon request to any requesting person in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect +applications for public access of your own form upon request. Additional disclosures of the information on this report may be made: (1) to any requesting person, subject +to the limitation contained in section 208(d)(1) of title 18, any determination granting an exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a +Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential violations of law or regulation; (3) to another Federal +agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with a judge -issued subpoena; (4) to a +source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records Administration or +the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a +party to litigation or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new +office, department or agency when an employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in +response to an inquiry made on behalf of an individual who is the subject of the record; (10) to contractors and other non -Government employees working on a contract, +service or assignment for the Federal Government when necessary to accomplish a function related to an OGE Government -wide system of records; and (11) on the +OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an individual nominated by the President to a position requiring +Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and +completing the form. Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, +to the Program Counsel, U.S. Office of Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information +unless it displays a currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e). +Reviewer Comments and Submission History +for Nancy Guiden + +11/14/2017 18:29:44 +Filing submitted + +11/13/2017 18:40:18 +Filing submitted + +Marilyn Barnes + +09/29/2017 15:38:17 +Extension granted to 11/14/2017","[]" +"70","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +CULLINAN, MARY B. + +SA, Director of Force Resiliency, OSD(P&R), DoD +Date of Appointment: 06/18/2018 + +Other Federal Government Positions Held During the Preceding 12 Months: + +Law Clerk, US Court of Federal Claims, 5/2017 - 6/2018 + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +MARY B. CULLINAN +User ID: dff6f695dc2e790e77ffe623e4eb5dd2963fb88774a4b195451f13692f056a1af2710c4a3052 +08/07/2018 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +JEFFREY A. GREEN +User ID: 111a19c145238db9e59fb8b2d0ff5a9d853e7efef698842a62fde6ecbc7ce711c9fedc9d +08/22/2018 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +ELIZABETH P. VAN WINKLE +User ID: c3de8230c93fddc771ce9eba23cd33afa7400bce87d6f2280707d5e43bf47277bf8ce48a0dcf +08/16/2018 + +U.S. Office of Government Ethics Certification + +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 Catholic University, Columbus School of Law Washington, DC, USA Educational Institu +tion + +Adjunct Professor 08/2017 12/2017 +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Germanna Community College, deferred compensation, ca +sh receivable + +N/A $1,001 - $15,000 None (or less than +$201) + +N/A None (or less than +$201) + +2 Catholic Diocese of Arlington Lay Employees' Retireme +nt Plan. defined benefit plan (value not readily asc +ertainable): eligible for $259/mo. at age 65 + +3 Catholic University, Columbus School of Law N/A Salary $2000 + +3. Filer's Employment Agreements and Arrangements + +EMPLOYER OR OTHER PARTY TO + +# AGREEMENT/ARRANGEMENT CITY/STATE STATUS AND TERMS DATE + +1 Catholic Diocese of Arlington Arlington, VA, USA Lay Employees' Retirement Plan: Deferred vested bene +fit. Monthly lifetime benefit beginning the first da +y of the month following the date you attain age 65 + +2 Germanna Community College Locust Grove, VA, USA Continuing participation in Employee Benefit Plan: T +o date no income received. Former employer no longer +continues to contribute to this plan. + +02/2012 + +01/2012 + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +This report has no reported Compensation Exceeding $5,000 + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Traditional Contributory IRA No None $201) (or less than +1.1 SCHWAB EMERGING MARKETS ETF (SCHE) Yes $1,001 - $15,000 None $201) (or less than +1.2 SCHWAB FUNDA EMG MKTS, Large Com ETF (FNDE) Yes $1,001 - $15,000 None $201) (or less than +1.3 SCHWAB FUNDAMENTAL INTL SMAL COM ETF (FNDC) Yes $1,001 - $15,000 None $201) (or less than +1.4 SCHWAB FUNDAMENTAL US LARGE CO ETF (FNDX) Yes $1,001 - $15,000 None $201) (or less than +1.5 SCHWAB FUNDAMENTAL US SMALL COM ETF (FNDA) Yes $1,001 - $15,000 None $201) (or less than +1.6 SCHWAB INTERNATNAL SMALL CAP EQY ETF (SCHC) Yes $1,001 - $15,000 None $201) (or less than +1.7 SCHWAB US LARGE CAP ETF (SCHX) Yes $1,001 - $15,000 None (or less than + +$201) +1.8 SCHWAB US SMALL CAP ETF (SCHA) Yes $1,001 - $15,000 None $201) (or less than +1.9 SCHWAB INTERNATIONAL EQUITY ETF (SCHF) Yes $1,001 - $15,000 None $201) (or less than +1.10 CHARLES SCHWAB US REIT ETF (SCHH) Yes $1,001 - $15,000 None $201) (or less than +1.11 SCHWAB FUNDAMENTAL INL LARGE COM ETF (FNDF) Yes $1,001 - $15,000 None $201) (or less than +2 Schwab Roth IRA No None $201) (or less than +2.1 SCHWAB FUNDAMENTAL INL LARGE COM ETF (FNDF) Yes $1,001 - $15,000 None $201) (or less than +2.2 SCHWAB FUNDAMENTAL US LARGE CO ETF (FNDX) Yes $1,001 - $15,000 None $201) (or less than +2.3 SCHWAB FUNDAMENTAL US SMALL COM ETF (FNDA) Yes $1,001 - $15,000 None $201) (or less than +2.4 SCHWAB INTERNATIONAL EQUITY ETF (SCHF) Yes $1,001 - $15,000 None $201) (or less than +2.5 SCHWAB INTERNATNAL SMALL CAP EQY ETF (SCHC) Yes $1,001 - $15,000 None $201) (or less than +2.6 SCHWAB US LARGE CAP ETF (SCHX) Yes $1,001 - $15,000 None $201) (or less than +2.7 SCHWAB US SMALL CAP ETF (SCHA) Yes $1,001 - $15,000 None $201) (or less than +2.8 SCHWAB FUNDA EMG MKTS LARGE COM ETF (FNDE) Yes $1,001 - $15,000 None $201) (or less than +2.9 SCHWAB FUNDAMENTAL INT SMAL COM ETF (FNDC) Yes $1,001 - $15,000 None $201) (or less than +3 401K: UAL Pilot Retirement Account: Target Date Fund 2030 Yes $500,001 - $1,000,000 None $201) (or less than +4 US Bank Account #1 Cash accounts N/A $15,001 - $50,000 None $201) (or less than +5 US Bank #2 Cash account N/A $1,001 - $15,000 None $201) (or less than +6 US Bank Account #3 Cash account N/A $1,001 - $15,000 None (or less than + +$201) + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $390 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $390 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $156 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1637, ""end"": 1704}, {""label"": ""Description"", ""start"": 1785, ""end"": 1936}, {""label"": ""Description"", ""start"": 1940, ""end"": 1983}, {""label"": ""Description"", ""start"": 2923, ""end"": 2951}, {""label"": ""Description"", ""start"": 3046, ""end"": 3090}, {""label"": ""Description"", ""start"": 3169, ""end"": 3228}, {""label"": ""Description"", ""start"": 3292, ""end"": 3351}, {""label"": ""Description"", ""start"": 3415, ""end"": 3466}, {""label"": ""Description"", ""start"": 3538, ""end"": 3597}, {""label"": ""Description"", ""start"": 3661, ""end"": 3720}, {""label"": ""Description"", ""start"": 3784, ""end"": 3814}, {""label"": ""Description"", ""start"": 3915, ""end"": 3945}, {""label"": ""Description"", ""start"": 4037, ""end"": 4075}, {""label"": ""Description"", ""start"": 4159, ""end"": 4192}, {""label"": ""Description"", ""start"": 4281, ""end"": 4324}, {""label"": ""Description"", ""start"": 4403, ""end"": 4418}, {""label"": ""Description"", ""start"": 4525, ""end"": 4568}, {""label"": ""Description"", ""start"": 4647, ""end"": 4688}, {""label"": ""Description"", ""start"": 4769, ""end"": 4811}, {""label"": ""Description"", ""start"": 4891, ""end"": 4929}, {""label"": ""Description"", ""start"": 5013, ""end"": 5056}, {""label"": ""Description"", ""start"": 5135, ""end"": 5165}, {""label"": ""Description"", ""start"": 5257, ""end"": 5287}, {""label"": ""Description"", ""start"": 5379, ""end"": 5421}, {""label"": ""Description"", ""start"": 5501, ""end"": 5543}, {""label"": ""Description"", ""start"": 5623, ""end"": 5681}, {""label"": ""Description"", ""start"": 5745, ""end"": 5777}, {""label"": ""Description"", ""start"": 5867, ""end"": 5890}, {""label"": ""Description"", ""start"": 5989, ""end"": 6020}, {""label"": ""Value"", ""start"": 1710, ""end"": 1726}, {""label"": ""Value"", ""start"": 3112, ""end"": 3129}, {""label"": ""Value"", ""start"": 3235, ""end"": 3252}, {""label"": ""Value"", ""start"": 3358, ""end"": 3375}, {""label"": ""Value"", ""start"": 3481, ""end"": 3498}, {""label"": ""Value"", ""start"": 3604, ""end"": 3621}, {""label"": ""Value"", ""start"": 3727, ""end"": 3744}, {""label"": ""Value"", ""start"": 3850, ""end"": 3867}, {""label"": ""Value"", ""start"": 3980, ""end"": 3996}, {""label"": ""Value"", ""start"": 4102, ""end"": 4118}, {""label"": ""Value"", ""start"": 4224, ""end"": 4240}, {""label"": ""Value"", ""start"": 4346, ""end"": 4362}, {""label"": ""Value"", ""start"": 4590, ""end"": 4606}, {""label"": ""Value"", ""start"": 4712, ""end"": 4728}, {""label"": ""Value"", ""start"": 4834, ""end"": 4850}, {""label"": ""Value"", ""start"": 4956, ""end"": 4972}, {""label"": ""Value"", ""start"": 5078, ""end"": 5094}, {""label"": ""Value"", ""start"": 5200, ""end"": 5216}, {""label"": ""Value"", ""start"": 5322, ""end"": 5338}, {""label"": ""Value"", ""start"": 5444, ""end"": 5460}, {""label"": ""Value"", ""start"": 5566, ""end"": 5582}, {""label"": ""Value"", ""start"": 5688, ""end"": 5709}, {""label"": ""Value"", ""start"": 5810, ""end"": 5827}, {""label"": ""Value"", ""start"": 5932, ""end"": 5948}, {""label"": ""Value"", ""start"": 6054, ""end"": 6070}, {""label"": ""Amount"", ""start"": 1727, ""end"": 1751}, {""label"": ""Amount"", ""start"": 1757, ""end"": 1781}, {""label"": ""Amount"", ""start"": 1995, ""end"": 2000}, {""label"": ""Amount"", ""start"": 3010, ""end"": 3040}, {""label"": ""Amount"", ""start"": 3133, ""end"": 3163}, {""label"": ""Amount"", ""start"": 3256, ""end"": 3286}, {""label"": ""Amount"", ""start"": 3379, ""end"": 3409}, {""label"": ""Amount"", ""start"": 3502, ""end"": 3532}, {""label"": ""Amount"", ""start"": 3625, ""end"": 3655}, {""label"": ""Amount"", ""start"": 3748, ""end"": 3778}, {""label"": ""Amount"", ""start"": 3871, ""end"": 3908}, {""label"": ""Amount"", ""start"": 4003, ""end"": 4030}, {""label"": ""Amount"", ""start"": 4125, ""end"": 4152}, {""label"": ""Amount"", ""start"": 4247, ""end"": 4274}, {""label"": ""Amount"", ""start"": 4369, ""end"": 4396}, {""label"": ""Amount"", ""start"": 4491, ""end"": 4518}, {""label"": ""Amount"", ""start"": 4613, ""end"": 4640}, {""label"": ""Amount"", ""start"": 4735, ""end"": 4762}, {""label"": ""Amount"", ""start"": 4857, ""end"": 4884}, {""label"": ""Amount"", ""start"": 4979, ""end"": 5006}, {""label"": ""Amount"", ""start"": 5101, ""end"": 5128}, {""label"": ""Amount"", ""start"": 5223, ""end"": 5250}, {""label"": ""Amount"", ""start"": 5345, ""end"": 5372}, {""label"": ""Amount"", ""start"": 5467, ""end"": 5494}, {""label"": ""Amount"", ""start"": 5589, ""end"": 5616}, {""label"": ""Amount"", ""start"": 5711, ""end"": 5738}, {""label"": ""Amount"", ""start"": 5833, ""end"": 5860}, {""label"": ""Amount"", ""start"": 5955, ""end"": 5982}, {""label"": ""Amount"", ""start"": 6077, ""end"": 6111}]" +"71","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +JACKSON, COLIN F. + +Deputy Assistant Secretary of Defense, OSD-P (APSA), DOD/OSD +Date of Appointment: 08/28/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +COLIN F. JACKSON +User ID: 14B7070BC2FD1E84 +12/15/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +DAVID F. HELVEY +User ID: F0CE72F2E3AF8614 +12/21/2017 + +U.S. Office of Government Ethics Certification + +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION + +1 Columbia University New York, NY, USA Educational Institu +tion + +2 Massachusetts Institute of Technology Cambridge, MA, USA Educational Institu +tion + +3 US NAval War College Newport, RI, USA Educational Institu +tion + +Adjunct Professor + +Adjunct Professor + +Director + +FROM TO +02/2015 05/2017 +02/2017 05/2017 +07/2017 08/2017 + +2. Filer's Employment Assets & Income and Retirement Accounts +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Janus Mutual Fund IRA Yes $50,001 - $100,000 Capital Gains $15,001 - $50,000 +1.1 Rental home income ( see comment for net of expenses) N/A $500,001 - $1,000,000 Rent and Royalties $15,001 - $50,000 +2 Columbia University Adjunct Teaching N/A Salary $13750 +3 Freedom's Forge Lecture N/A Honoraria, 06/25/2017 $500 +4 Lincoln Labs Lecture Defense Technical Series N/A Honoraria, 04/23/2017 $1000 +5 MIT Adjunct Faculty N/A Salary $10000 +6 Swedish Management Group Lectures N/A Honoraria, 05/01/2017 $2000 +7 US Army Reserves N/A Salary $8285 +8 US Naval War College N/A Salary $121490 + +3. Filer's Employment Agreements and Arrangements + +EMPLOYER OR OTHER PARTY TO + +# AGREEMENT/ARRANGEMENT CITY/STATE STATUS AND TERMS DATE + +1 US NAval War College Newport, RI, USA Intent to rehire: I left position as Professor at th +e US Naval War College in 8/17.Provost NWC communicat +ed his intent to rehire if position available + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +This report has no reported Compensation Exceeding $5,000 + +5. Spouse's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Hook Logic Shares No $500,001 - $1,000,000 Capital Gains $100,001 - $1,000,000 +2 Vanguard Mutual Funds IRA Yes $100,001 - $250,000 Capital Gains $100,001 - $1,000,000 +3 Sedna Marketing PArtners Checking Account No $15,001 - $50,000 None (or less than $201) +4 DOTS Technology Group N/A Salary +5 Sedna Marketing Partners 6. Other Assets and Income N/A Salary +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Vanguard Mutual Funds IRA Yes $15,001 - $50,000 IRA Life to Date $38,540 +2 Fidelity Mutual Funds IRA Yes $50,001 - $100,000 Capital Gains $50,001 - $100,000 +3 Janus Mutual Fund Yes $1,001 - $15,000 Capital Gains $1,001 - $2,500 +4 Fidelity Mutual Funds IRA Yes $100,001 - $250,000 Capital Gains $50,001 - $100,000 +5 Vanguard Mutual Funds SEP IRA Yes $500,001 - $1,000,000 Capital Gains $100,001 - $1,000,000 +6 Fidelity Mutual Funds SEP IRA Yes $50,001 - $100,000 Capital Gains $1,001 - $2,500 +7 Bank of America UTMA Accounts Yes $50,001 - $100,000 None (or less than $201) +8 Bank of America Savings Account Yes $100,001 - $250,000 None (or less than $201) +9 Vanguard 529 Yes $250,001 - $500,000 None (or less than $201) +10 Fidelity 529 Yes $50,001 - $100,000 None (or less than $201) +11 Procter and Gamble Stock N/A $1,001 - $15,000 Dividends $201 - $1,000 + +08/2017 +12 Wells Fargo Stock No $1,001 - $15,000 Dividends $201 - $1,000 + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +# CREDITOR NAME TYPE OF LIABILITY AMOUNT + +YEAR +INCURRED + +INTEREST +RATE TERM + +1 BMW Finance Loan $15,001 - +$50,000 + +2 Wells Fargo Mortgage Mortgage, Portsmouth, RI, USA $250,001 - +$500,000 + +3 Wells Fargo Mortgage (Rental) Mortgage, Portsmouth, RI, USA $250,001 - +$500,000 + +2016 5.0% 5 year + +2013 2.875% 15 years + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +2013 3.25% 15 years + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1610, ""end"": 1631}, {""label"": ""Description"", ""start"": 1745, ""end"": 1798}, {""label"": ""Description"", ""start"": 1880, ""end"": 1916}, {""label"": ""Description"", ""start"": 1997, ""end"": 2020}, {""label"": ""Description"", ""start"": 2112, ""end"": 2157}, {""label"": ""Description"", ""start"": 2228, ""end"": 2247}, {""label"": ""Description"", ""start"": 2345, ""end"": 2378}, {""label"": ""Description"", ""start"": 2461, ""end"": 2477}, {""label"": ""Description"", ""start"": 2577, ""end"": 2597}, {""label"": ""Description"", ""start"": 3420, ""end"": 3437}, {""label"": ""Description"", ""start"": 3586, ""end"": 3611}, {""label"": ""Description"", ""start"": 3752, ""end"": 3793}, {""label"": ""Description"", ""start"": 3921, ""end"": 3942}, {""label"": ""Description"", ""start"": 4001, ""end"": 4025}, {""label"": ""Description"", ""start"": 4345, ""end"": 4370}, {""label"": ""Description"", ""start"": 4497, ""end"": 4522}, {""label"": ""Description"", ""start"": 4660, ""end"": 4677}, {""label"": ""Description"", ""start"": 4820, ""end"": 4845}, {""label"": ""Description"", ""start"": 4983, ""end"": 5012}, {""label"": ""Description"", ""start"": 5149, ""end"": 5178}, {""label"": ""Description"", ""start"": 5309, ""end"": 5338}, {""label"": ""Description"", ""start"": 5478, ""end"": 5509}, {""label"": ""Description"", ""start"": 5647, ""end"": 5659}, {""label"": ""Description"", ""start"": 5816, ""end"": 5828}, {""label"": ""Description"", ""start"": 5985, ""end"": 6009}, {""label"": ""Description"", ""start"": 6100, ""end"": 6117}, {""label"": ""Value"", ""start"": 1669, ""end"": 1687}, {""label"": ""Value"", ""start"": 1804, ""end"": 1825}, {""label"": ""Value"", ""start"": 4393, ""end"": 4410}, {""label"": ""Value"", ""start"": 4545, ""end"": 4563}, {""label"": ""Value"", ""start"": 4708, ""end"": 4724}, {""label"": ""Value"", ""start"": 4868, ""end"": 4887}, {""label"": ""Value"", ""start"": 5031, ""end"": 5052}, {""label"": ""Value"", ""start"": 5197, ""end"": 5215}, {""label"": ""Value"", ""start"": 5357, ""end"": 5375}, {""label"": ""Value"", ""start"": 5526, ""end"": 5545}, {""label"": ""Value"", ""start"": 5695, ""end"": 5714}, {""label"": ""Value"", ""start"": 5864, ""end"": 5882}, {""label"": ""Value"", ""start"": 6033, ""end"": 6049}, {""label"": ""Value"", ""start"": 6121, ""end"": 6137}, {""label"": ""Amount"", ""start"": 1715, ""end"": 1739}, {""label"": ""Amount"", ""start"": 1850, ""end"": 1874}, {""label"": ""Amount"", ""start"": 1985, ""end"": 1991}, {""label"": ""Amount"", ""start"": 2102, ""end"": 2106}, {""label"": ""Amount"", ""start"": 2217, ""end"": 2222}, {""label"": ""Amount"", ""start"": 2333, ""end"": 2339}, {""label"": ""Amount"", ""start"": 2450, ""end"": 2455}, {""label"": ""Amount"", ""start"": 2566, ""end"": 2571}, {""label"": ""Amount"", ""start"": 2682, ""end"": 2689}, {""label"": ""Amount"", ""start"": 3509, ""end"": 3530}, {""label"": ""Amount"", ""start"": 3675, ""end"": 3696}, {""label"": ""Amount"", ""start"": 3841, ""end"": 3865}, {""label"": ""Amount"", ""start"": 4434, ""end"": 4441}, {""label"": ""Amount"", ""start"": 4586, ""end"": 4604}, {""label"": ""Amount"", ""start"": 4749, ""end"": 4764}, {""label"": ""Amount"", ""start"": 4909, ""end"": 4927}, {""label"": ""Amount"", ""start"": 5072, ""end"": 5093}, {""label"": ""Amount"", ""start"": 5238, ""end"": 5253}, {""label"": ""Amount"", ""start"": 5398, ""end"": 5422}, {""label"": ""Amount"", ""start"": 5567, ""end"": 5591}, {""label"": ""Amount"", ""start"": 5736, ""end"": 5760}, {""label"": ""Amount"", ""start"": 5905, ""end"": 5929}, {""label"": ""Amount"", ""start"": 6074, ""end"": 6087}, {""label"": ""Amount"", ""start"": 6148, ""end"": 6161}]" +"72","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +SIMON, TAMAS + +Program Manager, Loch Harbour Group, Private Sector +Date of Appointment: 05/31/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +TAMAS SIMON +User ID: 292EFDEB06A2FF84 +06/23/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +KURT T. GERLACH +User ID: A362E5D13AC976AA +08/01/2017 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +SCOTT A. COMES +User ID: 15A42EF0CA782D2F +06/23/2017 + +U.S. Office of Government Ethics Certification + +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 Loch Harbour Group Aleandria, VA, USA Business Enterprise Employee 02/2015 05/2017 +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Principal Financial 401k (Loch Harbour Group) N/A $15,001 - $50,000 Dividends, Capital +Gains, Interest + +1.1 Principal Lifetime Hybrid 2040 CIT Yes $1,001 - $15,000 None (or less than +$201) + +2 SAIC Stock N/A $1,001 - $15,000 None (or less than +$201) + +3 LEIDOS Stock N/A $1,001 - $15,000 None (or less than +$201) + +4 Loch Harbour Group - Income N/A Salary $132000 + +$201 - $1,000 + +3. Filer's Employment Agreements and Arrangements + +EMPLOYER OR OTHER PARTY TO + +# AGREEMENT/ARRANGEMENT CITY/STATE STATUS AND TERMS DATE + +1 Loch Harbour Group 401k Alexnadria, VA, USA Continuing participation in Employee Benefit Plan: N +either I not my former employer continue to make cont +ributions to this plan. + +2 SAIC McLean, VA, USA Stock Option: Holding a fixed number of shares from +a prior stock option plan with SAIC. Stocks were divi +ded to SAIC & LEIDOS after company breakup. + +02/2015 + +05/2007 + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +# SOURCE NAME CITY, STATE BRIEF DESCRIPTION OF DUTIES + +1 Loch Harbour Group Alexandria, VA I was employed and a DOD Contractor for a c +ustomer, AF/TE at the Pentagon as the Progr +am Manager. I performed project oversight a +nd the supervisor for the contractors. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Bank of America Checking Account N/A $1,001 - $15,000 None $201) (or less than +2 Bank of America UTMA N/A $1,001 - $15,000 None $201) (or less than +3 Bank of America Savings Account - 8001 N/A $1,001 - $15,000 None $201) (or less than +4 Merrill Lynch / BofA Investment Account N/A $15,001 - $50,000 None $201) (or less than +4.1 Direxion Daily Large Cap Bear 3X Shares (SPXS) N/A $1,001 - $15,000 None (or less than + +$201) +4.2 SNAP Chat Stock N/A $1,001 - $15,000 None $201) (or less than +5 Merrill Lynch Roth IRA (Cash only) N/A $1,001 - $15,000 None $201) (or less than +6 Merrill Lynch IRA (Cash only) N/A $1,001 - $15,000 None $201) (or less than +7 Merrill Lynch - IRA (cash only) N/A $1,001 - $15,000 None $201) (or less than +8 Virginia - 529 - FBO daughter N/A $15,001 - $50,000 None $201) (or less than +8.1 Intermediate Bond Fund of America 529A Yes $1,001 - $15,000 None $201) (or less than +8.2 Short Term Bond Fund of America 529A Yes $1,001 - $15,000 None $201) (or less than +9 Virginia - 529 - FBO daughter N/A $1,001 - $15,000 None $201) (or less than +9.1 Capital World Bond Fund 529A Yes $1,001 - $15,000 None $201) (or less than +9.2 The New Economy Fund 529A Yes $1,001 - $15,000 None $201) (or less than +9.3 New World Fund 529A Yes $1,001 - $15,000 None $201) (or less than +9.4 Short Term Bond Fund of America 529A Yes $1,001 - $15,000 None $201) (or less than +10 United Bank - Checking Account N/A $1,001 - $15,000 None (or less than + +$201) + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +# CREDITOR NAME TYPE OF LIABILITY AMOUNT + +YEAR +INCURRED + +INTEREST +RATE TERM + +1 Capital One Credit Card - Joint Credit Card/Revolving Charge Account $10,001 - +$15,000 + +2 Pentagon Federal Credit Union - H +ELOC + +2008 13.9% Credit Card + +HELOC on Primary Residence $15,001 - +$50,000 + +2013 4.0% HELOC + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1353, ""end"": 1398}, {""label"": ""Description"", ""start"": 1461, ""end"": 1495}, {""label"": ""Description"", ""start"": 1545, ""end"": 1555}, {""label"": ""Description"", ""start"": 1605, ""end"": 1617}, {""label"": ""Description"", ""start"": 1667, ""end"": 1694}, {""label"": ""Description"", ""start"": 2799, ""end"": 2831}, {""label"": ""Description"", ""start"": 2919, ""end"": 2939}, {""label"": ""Description"", ""start"": 3039, ""end"": 3093}, {""label"": ""Description"", ""start"": 3159, ""end"": 3214}, {""label"": ""Description"", ""start"": 3279, ""end"": 3325}, {""label"": ""Description"", ""start"": 3406, ""end"": 3421}, {""label"": ""Description"", ""start"": 3504, ""end"": 3538}, {""label"": ""Description"", ""start"": 3602, ""end"": 3631}, {""label"": ""Description"", ""start"": 3700, ""end"": 3731}, {""label"": ""Description"", ""start"": 3798, ""end"": 3827}, {""label"": ""Description"", ""start"": 3896, ""end"": 3934}, {""label"": ""Description"", ""start"": 3994, ""end"": 4030}, {""label"": ""Description"", ""start"": 4092, ""end"": 4121}, {""label"": ""Description"", ""start"": 4190, ""end"": 4218}, {""label"": ""Description"", ""start"": 4288, ""end"": 4313}, {""label"": ""Description"", ""start"": 4386, ""end"": 4405}, {""label"": ""Description"", ""start"": 4484, ""end"": 4520}, {""label"": ""Description"", ""start"": 4582, ""end"": 4612}, {""label"": ""Value"", ""start"": 1403, ""end"": 1420}, {""label"": ""Value"", ""start"": 1500, ""end"": 1516}, {""label"": ""Value"", ""start"": 1560, ""end"": 1576}, {""label"": ""Value"", ""start"": 1622, ""end"": 1638}, {""label"": ""Value"", ""start"": 2861, ""end"": 2879}, {""label"": ""Value"", ""start"": 2981, ""end"": 2999}, {""label"": ""Value"", ""start"": 3101, ""end"": 3119}, {""label"": ""Value"", ""start"": 3221, ""end"": 3239}, {""label"": ""Value"", ""start"": 3341, ""end"": 3359}, {""label"": ""Value"", ""start"": 3451, ""end"": 3469}, {""label"": ""Value"", ""start"": 3549, ""end"": 3567}, {""label"": ""Value"", ""start"": 3647, ""end"": 3665}, {""label"": ""Value"", ""start"": 3745, ""end"": 3763}, {""label"": ""Value"", ""start"": 3843, ""end"": 3861}, {""label"": ""Value"", ""start"": 3941, ""end"": 3959}, {""label"": ""Value"", ""start"": 4039, ""end"": 4057}, {""label"": ""Value"", ""start"": 4137, ""end"": 4155}, {""label"": ""Value"", ""start"": 4235, ""end"": 4253}, {""label"": ""Value"", ""start"": 4333, ""end"": 4351}, {""label"": ""Value"", ""start"": 4431, ""end"": 4449}, {""label"": ""Value"", ""start"": 4529, ""end"": 4547}, {""label"": ""Value"", ""start"": 4627, ""end"": 4645}, {""label"": ""Amount"", ""start"": 1517, ""end"": 1541}, {""label"": ""Amount"", ""start"": 1577, ""end"": 1601}, {""label"": ""Amount"", ""start"": 1639, ""end"": 1663}, {""label"": ""Amount"", ""start"": 1706, ""end"": 1728}, {""label"": ""Amount"", ""start"": 2883, ""end"": 2913}, {""label"": ""Amount"", ""start"": 3003, ""end"": 3033}, {""label"": ""Amount"", ""start"": 3123, ""end"": 3153}, {""label"": ""Amount"", ""start"": 3243, ""end"": 3273}, {""label"": ""Amount"", ""start"": 3363, ""end"": 3400}, {""label"": ""Amount"", ""start"": 3471, ""end"": 3498}, {""label"": ""Amount"", ""start"": 3569, ""end"": 3596}, {""label"": ""Amount"", ""start"": 3667, ""end"": 3694}, {""label"": ""Amount"", ""start"": 3765, ""end"": 3792}, {""label"": ""Amount"", ""start"": 3863, ""end"": 3890}, {""label"": ""Amount"", ""start"": 3961, ""end"": 3988}, {""label"": ""Amount"", ""start"": 4059, ""end"": 4086}, {""label"": ""Amount"", ""start"": 4157, ""end"": 4184}, {""label"": ""Amount"", ""start"": 4255, ""end"": 4282}, {""label"": ""Amount"", ""start"": 4353, ""end"": 4380}, {""label"": ""Amount"", ""start"": 4451, ""end"": 4478}, {""label"": ""Amount"", ""start"": 4549, ""end"": 4576}, {""label"": ""Amount"", ""start"": 4647, ""end"": 4681}]" +"75","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +Quinn, Zachary J. + +Staff Assistant, Department of State, Department of State +Date of Appointment: 04/03/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +Zachary J. Quinn +User ID: + +04/21/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +05/02/2017 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +05/02/2017 + +Reviewer: + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +05/02/2017 + +U.S. Office of Government Ethics Certification +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 Committee on Arrangements, RNC 2016 Cleveland, OH, USA Business Enterprise Employee 04/2016 08/2016 + +2 Jeb 2016, Inc. Miami, FL, USA Business Enterprise Employee 05/2015 03/2016 + +3 Sphere Consulting Washington, DC, USA Business Enterprise Employee 06/2013 05/2015 + +4 Yuma Solutions, Inc. Washington, DC, USA Business Enterprise Employee 10/2016 04/2017 + +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Committee on Arrangements - RNC 2016 N/A Salary $20000 + +2 Jeb 2016, Inc. N/A Salary $8334 + +3 Yuma Solutions N/A Salary $10688 + +3. Filer's Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +This report has no reported Compensation Exceeding $5,000 + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 ROTH IRA N/A $1,001 - $15,000 None (or less than +$201) + +2 SAVINGS N/A $1,001 - $15,000 None (or less than +$201) + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1661, ""end"": 1697}, {""label"": ""Description"", ""start"": 1719, ""end"": 1733}, {""label"": ""Description"", ""start"": 1754, ""end"": 1768}, {""label"": ""Description"", ""start"": 2198, ""end"": 2206}, {""label"": ""Description"", ""start"": 2256, ""end"": 2263}, {""label"": ""Amount"", ""start"": 1709, ""end"": 1715}, {""label"": ""Amount"", ""start"": 1745, ""end"": 1750}, {""label"": ""Amount"", ""start"": 1780, ""end"": 1786}, {""label"": ""Amount"", ""start"": 2228, ""end"": 2252}, {""label"": ""Amount"", ""start"": 2285, ""end"": 2309}, {""label"": ""Value"", ""start"": 2211, ""end"": 2227}, {""label"": ""Value"", ""start"": 2268, ""end"": 2284}]" +"93","136","Termination Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +Griffin, Aurora C. + +Policy and Strategy Advisor, Schedule C, Department of State, R/GEC, Department of State +Date of Termination: 06/23/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +Aurora C. Griffin +User ID: + +06/16/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +Joshua A. Kretman +User ID: + +06/20/2017 + +Other review conducted by + +U.S. Office of Government Ethics Certification + +1. Filer's Positions Held Outside United States Government +This report has no reported Positions Held Outside United States Government + +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 McKinsey and Company N/A starting bonus $25000 + +2 McKinsey and Company N/A Relocation Expenses $8000 + +3. Filer's Employment Agreements and Arrangements +EMPLOYER OR OTHER PARTY TO + +# AGREEMENT/ARRANGEMENT CITY/STATE STATUS AND TERMS DATE + +1 Catholic University of America Washington, DC, USA Future Employment Agreement: I have signed a job off +er to begin employment in August 2017. No money has b +een received. + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +This report has no reported Compensation Exceeding $5,000 + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +06/2017 + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Cash N/A $15,001 - $50,000 None (or less than $201) +2 Acton University N/A Honoraria, 06/15/2016 $750 +3 Alliance Defending Freedom N/A Honoraria, 07/11/2017 $750 +4 Catholic Herald N/A Commissions $500 +5 Catholic World Report N/A Commissions $750 +6 How I Stayed Catholic at Harvard N/A Book Royalties $2250 +7 How I Stayed Catholic at Harvard (Book) N/A Royalties $1000 +8 Legatus Speaking N/A Honoraria, 04/09/2016 $250 +9 Rhodes Scholarship Stipend N/A Scholarship Stipend $8110 +10 University Series Speaking N/A Honoraria, 04/09/2016 $250 + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1232, ""end"": 1252}, {""label"": ""Description"", ""start"": 1282, ""end"": 1302}, {""label"": ""Description"", ""start"": 2014, ""end"": 2018}, {""label"": ""Description"", ""start"": 2132, ""end"": 2148}, {""label"": ""Description"", ""start"": 2230, ""end"": 2256}, {""label"": ""Description"", ""start"": 2328, ""end"": 2343}, {""label"": ""Description"", ""start"": 2426, ""end"": 2447}, {""label"": ""Description"", ""start"": 2524, ""end"": 2556}, {""label"": ""Description"", ""start"": 2623, ""end"": 2663}, {""label"": ""Description"", ""start"": 2722, ""end"": 2738}, {""label"": ""Description"", ""start"": 2820, ""end"": 2846}, {""label"": ""Description"", ""start"": 2919, ""end"": 2945}, {""label"": ""Amount"", ""start"": 1272, ""end"": 1278}, {""label"": ""Amount"", ""start"": 1327, ""end"": 1332}, {""label"": ""Amount"", ""start"": 2103, ""end"": 2127}, {""label"": ""Amount"", ""start"": 2221, ""end"": 2225}, {""label"": ""Amount"", ""start"": 2319, ""end"": 2323}, {""label"": ""Amount"", ""start"": 2417, ""end"": 2421}, {""label"": ""Amount"", ""start"": 2515, ""end"": 2519}, {""label"": ""Amount"", ""start"": 2613, ""end"": 2618}, {""label"": ""Amount"", ""start"": 2712, ""end"": 2717}, {""label"": ""Amount"", ""start"": 2811, ""end"": 2815}, {""label"": ""Amount"", ""start"": 2909, ""end"": 2914}, {""label"": ""Amount"", ""start"": 3008, ""end"": 3012}, {""label"": ""Value"", ""start"": 2061, ""end"": 2078}]" +"95","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +Ehlingler, Jennifer T. + +Special Assistant, Office of the Deputy Secretary, Department of State +Date of Appointment: 07/19/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: + +Senior Officer for Programs & Operations, Office of the Regents, 7/2015 - Present + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +Jennifer T. Ehlingler +User ID: + +08/02/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +08/08/2017 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +08/08/2017 + +Reviewer: + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +08/08/2017 + +U.S. Office of Government Ethics Certification +1. Filer's Positions Held Outside United States Government +This report has no reported Positions Held Outside United States Government + +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 401 (k) Fidelity (SMART Plan for the Chamber of Comme +rce of the USA - former employer) + +3. Filer's Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +Yes $1,001 - $15,000 401 (k) $7,972 + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +This report has no reported Compensation Exceeding $5,000 + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +This report has no reported Assets + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +# CREDITOR NAME TYPE OF LIABILITY AMOUNT + +YEAR +INCURRED + +INTEREST +RATE TERM + +1 Department of Education: Student +Loan + +Loan $15,001 - +$50,000 + +2011 6.8% 2011-2017 + +2 JPMorgan Chase & Co. Credit Card/Revolving Charge Account $15,001 - +$50,000 + +2013 14.24% 2011-2017 + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1436, ""end"": 1523}, {""label"": ""Value"", ""start"": 1637, ""end"": 1653}, {""label"": ""Amount"", ""start"": 1662, ""end"": 1668}]" +"101","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +DE LA PENA, SERGIO + +Special Assistant, WHS, DoD +Date of Appointment: 01/20/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +SERGIO DE LA PENA +User ID: ECEA514E763F713E +03/07/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +ERIC C. RISHEL +User ID: 3A1D8A8810643A49 +04/12/2017 + +Other review conducted by + +U.S. Office of Government Ethics Certification + +Comments of Reviewing Officials (public annotations): + +PART # REFERENCE COMMENT + +6. 6 First Command IRA (03/07/17, Stein, Patricia ): Filer has confirmed that the asset value +shown here - represents only cash held within the account. The value +s of each individual underlying asset is provided separately. + +6. 7 First Command Asset Management Account (03/07/17, Stein, Patricia ): Filer has confirmed that the asset value +shown here - represents only cash held within the account. The value +s of each individual underlying asset is provided separately. + +1. Filer Positions Held outside United States Government +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 de la Pena Consulting, LLC Burke, VA, USA Business Enterprise Director 10/2008 Present + +2 Inter -American Defense College Foundation Washington, DC, USA Non -Profit Organiza +tion + +Treasurer 01/2016 Present + +2. Filer's Employment Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 de la Pena Consulting, LLC N/A $1,001 - $15,000 Consulting Fees Paid $47,166 + +2 de la Pena Consulting, LLC N/A Fees $47166 + +3. Filer Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +# SOURCE NAME CITY, STATE BRIEF DESCRIPTION OF DUTIES + +1 IEC Infrared Systems Middleburg Heights, OH contracted under my firm, de la Pena Consul +ting - business development + +2 Orion Management LLC Springfield, VA contracted as an Instructor via de la Pena +Consulting, LLC + +3 Precision Remotes Richmond, CA provided business development service via d +e la Pena Consulting, LLC + +5. Spouse's Employment Assets and Income + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 UTMA-DC 5; Fidelity ADV Freedom 2020 -CL A Yes $1,001 - $15,000 None $201) (or less than +2 UTMA-DC 4; Fidelity ADV Freedom 2015 -CL A Yes $1,001 - $15,000 Capital Gains $201 - $1,000 +3 UTMA-DC 3; Fidelity ADV Freedom 2015 -CL A Yes $15,001 - $50,000 $201 - $1,000 +4 UTMA DC 2; Fidelity ADV Freedom 2010 -CL I Yes $1,001 - $15,000 Capital Gains $201 - $1,000 +5 UTMA DC 1; Fidelity ADV Freedom 2010 -CL I Yes $1,001 - $15,000 None $201) (or less than +6 First Command IRA N/A $1,001 - $15,000 None $201) (or less than +6.1 AMG Yackman Fund Class I Yes $15,001 - $50,000 $201 - $1,000 +6.2 INVESCO International Yes $1,001 - $15,000 None $201) (or less than +6.3 Artisan International Value Yes $1,001 - $15,000 None $201) (or less than +6.4 Baird Core Plus Bond Inst Class Yes $1,001 - $15,000 None $201) (or less than +6.5 Blackrock Global Allocation FD Inc Yes $1,001 - $15,000 None (or less than + +$201) +6.6 FPA Crescent Portfolio Yes $1,001 - $15,000 None $201) (or less than +6.7 Fidelity 500 Index Fund Institutional Yes $15,001 - $50,000 $201 - $1,000 +6.8 Fidelity Advisor New Insights Fund Class Yes $15,001 - $50,000 None $201) (or less than +6.9 Seafarer Overseas Growth and Income Yes $1,001 - $15,000 None $201) (or less than +6.10 The Oakmark International Yes $1,001 - $15,000 None $201) (or less than +6.11 Loomis Sales Investment Grade Yes $1,001 - $15,000 None $201) (or less than +6.12 Metropolitan West Total Return Bond Yes $1,001 - $15,000 $201 - $1,000 +6.13 Franklin Mutual Global Discovery Yes $15,001 - $50,000 $201 - $1,000 +6.14 Nationwide Geneva Mid Cap Growth Fund Yes $1,001 - $15,000 None $201) (or less than +6.15 PIMCO Total Return Fund Class P Yes $1,001 - $15,000 None $201) (or less than +6.16 Principal Diversified Real Yes $1,001 - $15,000 None $201) (or less than +6.17 Royce Total Return Fund Yes $1,001 - $15,000 None $201) (or less than +6.18 Scout Unconstrained Bond Fund Class I Yes $1,001 - $15,000 None $201) (or less than +6.19 Templeton Global Bond Fund Advisor Yes $1,001 - $15,000 $201 - $1,000 +7 First Command Asset Management Account N/A $1,001 - $15,000 None $201) (or less than +7.1 INVESCO International Yes $1,001 - $15,000 None $201) (or less than +7.2 American Century High Yield Yes $1,001 - $15,000 $201 - $1,000 +7.3 Artisan Developing World Fund Advisor Yes $1,001 - $15,000 None $201) (or less than +7.4 Baird Mid Cap Fund Institutional Class Yes $1,001 - $15,000 None $201) (or less than +7.5 FPA Crescent Portfolio Yes $1,001 - $15,000 None $201) (or less than +7.6 Fidelity 500 Index Fund International Yes $1,001 - $15,000 None $201) (or less than +7.7 Fidelity Advisor Strategic Real Yes $1,001 - $15,000 None $201) (or less than +7.8 Fidelity Advisor Municipal Fund Yes $15,001 - $50,000 $201 - $1,000 +7.9 Fidelity Advisor New Insights Fund Class Yes $1,001 - $15,000 None $201) (or less than +7.10 John Hancock Disciplined Value Yes $1,001 - $15,000 None $201) (or less than +7.11 Franklin Global Discovery Yes $1,001 - $15,000 None $201) (or less than +7.12 The Osterweis Strategic Income Yes $1,001 - $15,000 $201 - $1,000 +7.13 T Rowe Price International Yes $1,001 - $15,000 None $201) (or less than +7.14 Sterling Capital Equity Income Fund Yes $1,001 - $15,000 None $201) (or less than +7.15 Templeton Global Bond Fund Advisor Yes $1,001 - $15,000 $201 - $1,000 +8 Roth IRA S; Fidelity ADV Freedom 2030 -CL I Yes $15,001 - $50,000 None (or less than +$201) + +9 Roth IRA W; Fidelity ADV Freedom 2045 -CL I Yes $15,001 - $50,000 None (or less than +$201) + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside the United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets and Income + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets and Income + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1908, ""end"": 1934}, {""label"": ""Description"", ""start"": 1988, ""end"": 2014}, {""label"": ""Description"", ""start"": 2797, ""end"": 2839}, {""label"": ""Description"", ""start"": 2921, ""end"": 2963}, {""label"": ""Description"", ""start"": 3039, ""end"": 3081}, {""label"": ""Description"", ""start"": 3157, ""end"": 3199}, {""label"": ""Description"", ""start"": 3275, ""end"": 3317}, {""label"": ""Description"", ""start"": 3399, ""end"": 3416}, {""label"": ""Description"", ""start"": 3523, ""end"": 3547}, {""label"": ""Description"", ""start"": 3641, ""end"": 3662}, {""label"": ""Description"", ""start"": 3765, ""end"": 3792}, {""label"": ""Description"", ""start"": 3889, ""end"": 3920}, {""label"": ""Description"", ""start"": 4013, ""end"": 4047}, {""label"": ""Description"", ""start"": 4145, ""end"": 4167}, {""label"": ""Description"", ""start"": 4245, ""end"": 4282}, {""label"": ""Description"", ""start"": 4339, ""end"": 4379}, {""label"": ""Description"", ""start"": 4439, ""end"": 4474}, {""label"": ""Description"", ""start"": 4539, ""end"": 4564}, {""label"": ""Description"", ""start"": 4639, ""end"": 4668}, {""label"": ""Description"", ""start"": 4739, ""end"": 4774}, {""label"": ""Description"", ""start"": 4833, ""end"": 4865}, {""label"": ""Description"", ""start"": 4927, ""end"": 4964}, {""label"": ""Description"", ""start"": 5027, ""end"": 5058}, {""label"": ""Description"", ""start"": 5127, ""end"": 5153}, {""label"": ""Description"", ""start"": 5227, ""end"": 5250}, {""label"": ""Description"", ""start"": 5327, ""end"": 5364}, {""label"": ""Description"", ""start"": 5427, ""end"": 5461}, {""label"": ""Description"", ""start"": 5521, ""end"": 5559}, {""label"": ""Description"", ""start"": 5621, ""end"": 5642}, {""label"": ""Description"", ""start"": 5721, ""end"": 5748}, {""label"": ""Description"", ""start"": 5815, ""end"": 5852}, {""label"": ""Description"", ""start"": 5915, ""end"": 5953}, {""label"": ""Description"", ""start"": 6015, ""end"": 6037}, {""label"": ""Description"", ""start"": 6115, ""end"": 6152}, {""label"": ""Description"", ""start"": 6215, ""end"": 6246}, {""label"": ""Description"", ""start"": 6315, ""end"": 6346}, {""label"": ""Description"", ""start"": 6409, ""end"": 6449}, {""label"": ""Description"", ""start"": 6509, ""end"": 6539}, {""label"": ""Description"", ""start"": 6609, ""end"": 6634}, {""label"": ""Description"", ""start"": 6709, ""end"": 6739}, {""label"": ""Description"", ""start"": 6803, ""end"": 6829}, {""label"": ""Description"", ""start"": 6903, ""end"": 6938}, {""label"": ""Description"", ""start"": 7003, ""end"": 7037}, {""label"": ""Description"", ""start"": 7093, ""end"": 7136}, {""label"": ""Description"", ""start"": 7187, ""end"": 7230}, {""label"": ""Value"", ""start"": 1939, ""end"": 1955}, {""label"": ""Value"", ""start"": 2846, ""end"": 2864}, {""label"": ""Value"", ""start"": 2970, ""end"": 2988}, {""label"": ""Value"", ""start"": 3088, ""end"": 3106}, {""label"": ""Value"", ""start"": 3206, ""end"": 3224}, {""label"": ""Value"", ""start"": 3324, ""end"": 3342}, {""label"": ""Value"", ""start"": 3448, ""end"": 3466}, {""label"": ""Value"", ""start"": 3572, ""end"": 3590}, {""label"": ""Value"", ""start"": 3690, ""end"": 3708}, {""label"": ""Value"", ""start"": 3814, ""end"": 3832}, {""label"": ""Value"", ""start"": 3938, ""end"": 3956}, {""label"": ""Value"", ""start"": 4062, ""end"": 4080}, {""label"": ""Value"", ""start"": 4192, ""end"": 4210}, {""label"": ""Value"", ""start"": 4292, ""end"": 4310}, {""label"": ""Value"", ""start"": 4386, ""end"": 4404}, {""label"": ""Value"", ""start"": 4486, ""end"": 4504}, {""label"": ""Value"", ""start"": 4586, ""end"": 4604}, {""label"": ""Value"", ""start"": 4686, ""end"": 4704}, {""label"": ""Value"", ""start"": 4786, ""end"": 4804}, {""label"": ""Value"", ""start"": 4880, ""end"": 4898}, {""label"": ""Value"", ""start"": 4974, ""end"": 4992}, {""label"": ""Value"", ""start"": 5074, ""end"": 5092}, {""label"": ""Value"", ""start"": 5174, ""end"": 5192}, {""label"": ""Value"", ""start"": 5274, ""end"": 5292}, {""label"": ""Value"", ""start"": 5374, ""end"": 5392}, {""label"": ""Value"", ""start"": 5474, ""end"": 5492}, {""label"": ""Value"", ""start"": 5568, ""end"": 5586}, {""label"": ""Value"", ""start"": 5668, ""end"": 5686}, {""label"": ""Value"", ""start"": 5768, ""end"": 5786}, {""label"": ""Value"", ""start"": 5862, ""end"": 5880}, {""label"": ""Value"", ""start"": 5962, ""end"": 5980}, {""label"": ""Value"", ""start"": 6062, ""end"": 6080}, {""label"": ""Value"", ""start"": 6162, ""end"": 6180}, {""label"": ""Value"", ""start"": 6262, ""end"": 6280}, {""label"": ""Value"", ""start"": 6362, ""end"": 6380}, {""label"": ""Value"", ""start"": 6456, ""end"": 6474}, {""label"": ""Value"", ""start"": 6556, ""end"": 6574}, {""label"": ""Value"", ""start"": 6656, ""end"": 6674}, {""label"": ""Value"", ""start"": 6756, ""end"": 6774}, {""label"": ""Value"", ""start"": 6850, ""end"": 6868}, {""label"": ""Value"", ""start"": 6950, ""end"": 6968}, {""label"": ""Value"", ""start"": 7050, ""end"": 7068}, {""label"": ""Value"", ""start"": 7141, ""end"": 7158}, {""label"": ""Value"", ""start"": 7235, ""end"": 7252}, {""label"": ""Amount"", ""start"": 1977, ""end"": 1984}, {""label"": ""Amount"", ""start"": 2024, ""end"": 2030}, {""label"": ""Amount"", ""start"": 2886, ""end"": 2915}, {""label"": ""Amount"", ""start"": 3010, ""end"": 3033}, {""label"": ""Amount"", ""start"": 3128, ""end"": 3151}, {""label"": ""Amount"", ""start"": 3246, ""end"": 3269}, {""label"": ""Amount"", ""start"": 3364, ""end"": 3393}, {""label"": ""Amount"", ""start"": 3488, ""end"": 3517}, {""label"": ""Amount"", ""start"": 3612, ""end"": 3635}, {""label"": ""Amount"", ""start"": 3730, ""end"": 3759}, {""label"": ""Amount"", ""start"": 3854, ""end"": 3883}, {""label"": ""Amount"", ""start"": 3978, ""end"": 4007}, {""label"": ""Amount"", ""start"": 4102, ""end"": 4131}, {""label"": ""Amount"", ""start"": 4212, ""end"": 4238}, {""label"": ""Amount"", ""start"": 4312, ""end"": 4332}, {""label"": ""Amount"", ""start"": 4406, ""end"": 4432}, {""label"": ""Amount"", ""start"": 4506, ""end"": 4532}, {""label"": ""Amount"", ""start"": 4606, ""end"": 4632}, {""label"": ""Amount"", ""start"": 4706, ""end"": 4732}, {""label"": ""Amount"", ""start"": 4806, ""end"": 4826}, {""label"": ""Amount"", ""start"": 4900, ""end"": 4920}, {""label"": ""Amount"", ""start"": 4994, ""end"": 5020}, {""label"": ""Amount"", ""start"": 5094, ""end"": 5120}, {""label"": ""Amount"", ""start"": 5194, ""end"": 5220}, {""label"": ""Amount"", ""start"": 5294, ""end"": 5320}, {""label"": ""Amount"", ""start"": 5394, ""end"": 5420}, {""label"": ""Amount"", ""start"": 5494, ""end"": 5514}, {""label"": ""Amount"", ""start"": 5588, ""end"": 5614}, {""label"": ""Amount"", ""start"": 5688, ""end"": 5714}, {""label"": ""Amount"", ""start"": 5788, ""end"": 5808}, {""label"": ""Amount"", ""start"": 5882, ""end"": 5908}, {""label"": ""Amount"", ""start"": 5982, ""end"": 6008}, {""label"": ""Amount"", ""start"": 6082, ""end"": 6108}, {""label"": ""Amount"", ""start"": 6182, ""end"": 6208}, {""label"": ""Amount"", ""start"": 6282, ""end"": 6308}, {""label"": ""Amount"", ""start"": 6382, ""end"": 6402}, {""label"": ""Amount"", ""start"": 6476, ""end"": 6502}, {""label"": ""Amount"", ""start"": 6576, ""end"": 6602}, {""label"": ""Amount"", ""start"": 6676, ""end"": 6702}, {""label"": ""Amount"", ""start"": 6776, ""end"": 6796}, {""label"": ""Amount"", ""start"": 6870, ""end"": 6896}, {""label"": ""Amount"", ""start"": 6970, ""end"": 6996}, {""label"": ""Amount"", ""start"": 7070, ""end"": 7090}, {""label"": ""Amount"", ""start"": 7159, ""end"": 7183}, {""label"": ""Amount"", ""start"": 7253, ""end"": 7277}]" +"103","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +KITAY, STEPHEN L. + +DASD, Space Policy, OSD(P), Department of Defense +Date of Appointment: 06/12/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: + +Professional Staff Member, House of Representatives, 10/2011 - 6/2017 + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +STEPHEN L. KITAY +User ID: F5FABB79DCB17B3D +11/01/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +JEFFREY A. GREEN +User ID: 06EEE68944867E81 +11/20/2017 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +THERESA M. WHELAN +User ID: 47F654C2AF09F12D +11/08/2017 + +U.S. Office of Government Ethics Certification + +1. Filer's Positions Held Outside United States Government +This report has no reported Positions Held Outside United States Government +2. Filer's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +3. Filer's Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +This report has no reported Compensation Exceeding $5,000 + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Bank Account - Checking and Savings N/A $15,001 - $50,000 None $201) (or less than +2 Brokerage Account N/A $50,001 - $100,000 None $201) (or less than +2.1 Amazon stock N/A $15,001 - $50,000 None $201) (or less than +2.2 QQQ Yes $15,001 - $50,000 Dividends $201 - $1,000 +2.3 Apple Stock N/A $15,001 - $50,000 Dividends $201 - $1,000 +3 IRA A N/A $50,001 - $100,000 None $201) (or less than +3.1 Apple Stock N/A $1,001 - $15,000 Dividends $201 - $1,000 +3.2 Amazon Stock N/A $15,001 - $50,000 None $201) (or less than +3.3 QQQ Stock N/A $1,001 - $15,000 Dividends $201 - $1,000 +3.4 SPY Stock Yes $1,001 - $15,000 None $201) (or less than +4 IRA B N/A $50,001 - $100,000 None $201) (or less than +4.1 Apple Stock N/A $1,001 - $15,000 None $201) (or less than +4.2 Amazon Stock N/A $50,001 - $100,000 None $201) (or less than +4.3 QQQ Stock Yes $15,001 - $50,000 Dividends $201 - $1,000 +5 DC 1 N/A $1,001 - $15,000 None $201) (or less than +5.1 Apple Stock N/A $1,001 - $15,000 None $201) (or less than +5.2 Amazon Stock N/A $1,001 - $15,000 None (or less than + +$201) +5.3 QQQ Stock Yes $1,001 - $15,000 None $201) (or less than +6 DC 2 N/A $1,001 - $15,000 None $201) (or less than +6.1 Amazon Stock N/A $1,001 - $15,000 None $201) (or less than +6.2 QQQ Stock N/A $1,001 - $15,000 None $201) (or less than +7 VA 529 - DC 1 Yes $1,001 - $15,000 None $201) (or less than +7.1 Fund 1 - Aggressive Growth VA 529 Yes $1,001 - $15,000 None $201) (or less than +7.2 Fund 2 - Stock Index VA 529 Yes $1,001 - $15,000 None $201) (or less than +8 VA 529 - DC 2 Yes $1,001 - $15,000 None $201) (or less than +8.1 Fund 1 - Aggressive Growth VA 529 Yes $1,001 - $15,000 None $201) (or less than +8.2 Fund 2 - Stock Index VA 529 Yes $1,001 - $15,000 None $201) (or less than +8.3 Fund 3 - International Index VA 529 Yes $1,001 - $15,000 None (or less than + +$201) + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1814, ""end"": 1849}, {""label"": ""Description"", ""start"": 1924, ""end"": 1941}, {""label"": ""Description"", ""start"": 2034, ""end"": 2046}, {""label"": ""Description"", ""start"": 2144, ""end"": 2147}, {""label"": ""Description"", ""start"": 2248, ""end"": 2259}, {""label"": ""Description"", ""start"": 2352, ""end"": 2357}, {""label"": ""Description"", ""start"": 2462, ""end"": 2473}, {""label"": ""Description"", ""start"": 2566, ""end"": 2578}, {""label"": ""Description"", ""start"": 2676, ""end"": 2685}, {""label"": ""Description"", ""start"": 2780, ""end"": 2789}, {""label"": ""Description"", ""start"": 2890, ""end"": 2895}, {""label"": ""Description"", ""start"": 3000, ""end"": 3011}, {""label"": ""Description"", ""start"": 3110, ""end"": 3122}, {""label"": ""Description"", ""start"": 3220, ""end"": 3229}, {""label"": ""Description"", ""start"": 3324, ""end"": 3328}, {""label"": ""Description"", ""start"": 3434, ""end"": 3445}, {""label"": ""Description"", ""start"": 3544, ""end"": 3556}, {""label"": ""Description"", ""start"": 3661, ""end"": 3670}, {""label"": ""Description"", ""start"": 3760, ""end"": 3764}, {""label"": ""Description"", ""start"": 3859, ""end"": 3871}, {""label"": ""Description"", ""start"": 3958, ""end"": 3967}, {""label"": ""Description"", ""start"": 4057, ""end"": 4075}, {""label"": ""Description"", ""start"": 4156, ""end"": 4194}, {""label"": ""Description"", ""start"": 4255, ""end"": 4287}, {""label"": ""Description"", ""start"": 4354, ""end"": 4372}, {""label"": ""Description"", ""start"": 4453, ""end"": 4491}, {""label"": ""Description"", ""start"": 4552, ""end"": 4584}, {""label"": ""Description"", ""start"": 4651, ""end"": 4691}, {""label"": ""Value"", ""start"": 1856, ""end"": 1873}, {""label"": ""Value"", ""start"": 1966, ""end"": 1984}, {""label"": ""Value"", ""start"": 2076, ""end"": 2093}, {""label"": ""Value"", ""start"": 2186, ""end"": 2203}, {""label"": ""Value"", ""start"": 2290, ""end"": 2307}, {""label"": ""Value"", ""start"": 2394, ""end"": 2412}, {""label"": ""Value"", ""start"": 2504, ""end"": 2520}, {""label"": ""Value"", ""start"": 2608, ""end"": 2625}, {""label"": ""Value"", ""start"": 2718, ""end"": 2734}, {""label"": ""Value"", ""start"": 2822, ""end"": 2838}, {""label"": ""Value"", ""start"": 2932, ""end"": 2950}, {""label"": ""Value"", ""start"": 3042, ""end"": 3058}, {""label"": ""Value"", ""start"": 3152, ""end"": 3170}, {""label"": ""Value"", ""start"": 3262, ""end"": 3279}, {""label"": ""Value"", ""start"": 3366, ""end"": 3382}, {""label"": ""Value"", ""start"": 3476, ""end"": 3492}, {""label"": ""Value"", ""start"": 3586, ""end"": 3602}, {""label"": ""Value"", ""start"": 3708, ""end"": 3725}, {""label"": ""Value"", ""start"": 3807, ""end"": 3824}, {""label"": ""Value"", ""start"": 3906, ""end"": 3923}, {""label"": ""Value"", ""start"": 4005, ""end"": 4022}, {""label"": ""Value"", ""start"": 4104, ""end"": 4121}, {""label"": ""Value"", ""start"": 4203, ""end"": 4220}, {""label"": ""Value"", ""start"": 4302, ""end"": 4319}, {""label"": ""Value"", ""start"": 4401, ""end"": 4418}, {""label"": ""Value"", ""start"": 4500, ""end"": 4517}, {""label"": ""Value"", ""start"": 4599, ""end"": 4616}, {""label"": ""Value"", ""start"": 4698, ""end"": 4715}, {""label"": ""Amount"", ""start"": 1889, ""end"": 1918}, {""label"": ""Amount"", ""start"": 1999, ""end"": 2028}, {""label"": ""Amount"", ""start"": 2109, ""end"": 2138}, {""label"": ""Amount"", ""start"": 2219, ""end"": 2242}, {""label"": ""Amount"", ""start"": 2323, ""end"": 2346}, {""label"": ""Amount"", ""start"": 2427, ""end"": 2456}, {""label"": ""Amount"", ""start"": 2537, ""end"": 2560}, {""label"": ""Amount"", ""start"": 2641, ""end"": 2670}, {""label"": ""Amount"", ""start"": 2751, ""end"": 2774}, {""label"": ""Amount"", ""start"": 2855, ""end"": 2884}, {""label"": ""Amount"", ""start"": 2965, ""end"": 2994}, {""label"": ""Amount"", ""start"": 3075, ""end"": 3104}, {""label"": ""Amount"", ""start"": 3185, ""end"": 3214}, {""label"": ""Amount"", ""start"": 3295, ""end"": 3318}, {""label"": ""Amount"", ""start"": 3399, ""end"": 3428}, {""label"": ""Amount"", ""start"": 3509, ""end"": 3538}, {""label"": ""Amount"", ""start"": 3619, ""end"": 3655}, {""label"": ""Amount"", ""start"": 3727, ""end"": 3754}, {""label"": ""Amount"", ""start"": 3826, ""end"": 3853}, {""label"": ""Amount"", ""start"": 3925, ""end"": 3952}, {""label"": ""Amount"", ""start"": 4024, ""end"": 4051}, {""label"": ""Amount"", ""start"": 4123, ""end"": 4150}, {""label"": ""Amount"", ""start"": 4222, ""end"": 4249}, {""label"": ""Amount"", ""start"": 4321, ""end"": 4348}, {""label"": ""Amount"", ""start"": 4420, ""end"": 4447}, {""label"": ""Amount"", ""start"": 4519, ""end"": 4546}, {""label"": ""Amount"", ""start"": 4618, ""end"": 4645}, {""label"": ""Amount"", ""start"": 4717, ""end"": 4751}]" +"104","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +Caudelle, Ryan C. + +Staff Assistant, Office of the White House Liaison, Department of State +Date of Appointment: 01/27/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +Ryan C. Caudelle +User ID: + +02/23/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +03/03/2017 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +03/02/2017 + +Reviewer: + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +03/03/2017 + +U.S. Office of Government Ethics Certification +1. Filer's Positions Held Outside United States Government +This report has no reported Positions Held Outside United States Government + +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Donald J. Trump for President, Inc N/A Salary $28000 + +2 Georgia Republican Party N/A Salary $15000 + +3 John Watson for Party Chairman N/A Fees $3500 + +3. Filer's Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +This report has no reported Compensation Exceeding $5,000 + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Morgan Stanley managed investment account Yes $15,001 - $50,000 Capital Gains $2,501 - $5,000 + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1349, ""end"": 1383}, {""label"": ""Description"", ""start"": 1405, ""end"": 1429}, {""label"": ""Description"", ""start"": 1451, ""end"": 1481}, {""label"": ""Description"", ""start"": 1908, ""end"": 1949}, {""label"": ""Amount"", ""start"": 1395, ""end"": 1401}, {""label"": ""Amount"", ""start"": 1441, ""end"": 1447}, {""label"": ""Amount"", ""start"": 1491, ""end"": 1496}, {""label"": ""Amount"", ""start"": 1986, ""end"": 2001}, {""label"": ""Value"", ""start"": 1954, ""end"": 1971}]" +"107","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +ABNER, DAVID E. + +Special Assistant, Department of Defense, OASD-LA +Date of Appointment: 09/04/2018 + +Other Federal Government Positions Held During the Preceding 12 Months: + +Military Legislative Assistant, U.S. House of Representatives, 5/2016 - 9/2018 +Corporal, Department of Defense, 7/2008 - 7/2013 + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +DAVID E. ABNER +User ID: 44def08123c93cf117bb9a238582e896e8057635f1bf165a9caa0a3b5bf030f9710d839808b4 +09/26/2018 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +MARY E. HARNEY +User ID: 9321986d567a2aeb1da341146310ee58175d1a73a29b0a7044acff375dbee5754bd18051bf +10/11/2018 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +EDMUND P. GIAMBASTIANI III +User ID: 99d9e5571509e0c81b9cbbef46141f10bb6e2ad6f09c3ab59e22618760ef0cfcf21ebea1064e +09/26/2018 + +U.S. Office of Government Ethics Certification + +1. Filer's Positions Held Outside United States Government +This report has no reported Positions Held Outside United States Government +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Shugoll Research N/A Honoraria, 07/24/2018 $250 +2 Shugoll Research N/A Honoraria, 02/15/2018 $250 +3 Shugoll Research N/A Honoraria, 07/19/2017 $250 + +3. Filer's Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +This report has no reported Compensation Exceeding $5,000 + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 US Bank #1 - Cash Account N/A $15,001 - $50,000 None $201) (or less than +2 USAA Managed Portfolio No None $201) (or less than +2.1 QSPRX - AQR STYLE PREMIA ALTERNATIVE FD CL R6 Yes $1,001 - $15,000 None $201) (or less than +2.2 QSERX - AQR SMALL CAP MULTI STYLE FD CL R6 Yes $1,001 - $15,000 None $201) (or less than +2.3 USAXX - USAA MONEY MARKET Yes $1,001 - $15,000 None $201) (or less than +2.4 ABEYX - AMERICAN BEACON INTL EQUITY Y CLASS Yes $1,001 - $15,000 None $201) (or less than +2.5 AHLIX - AMERICAN BEACON AHL MNGD FUTRS STRT INST Yes $1,001 - $15,000 None $201) (or less than +2.6 BCOIX - BAIRD CORE PLUS BOND INSTITUTIONAL Yes $1,001 - $15,000 None $201) (or less than +2.7 GICUX - GOLDMAN SACHS INTNAT SM CAP INSIGHTS R6 Yes $1,001 - $15,000 None $201) (or less than +2.8 HLIZX - HARDING LOEVNER INTL EQUITY PORT CL Z Yes $1,001 - $15,000 None $201) (or less than +2.9 HHHFX - HARTFORD SHRODERS EMERG MKTS EQ CL F Yes None (or less than $1,001) None $201) (or less than +2.10 EMBIX - LAZARD EMERGING MRKTS EQ BLEND INSTL Yes $1,001 - $15,000 None $201) (or less than +2.11 UMAFX - USAA MANAGED ALLOCATION FD RETAIL Yes $1,001 - $15,000 None (or less than + +$201) +2.12 UISBX - USAA SHORT TERM BOND FD INSTL Yes $1,001 - $15,000 None $201) (or less than +2.13 UIINX - USAA INCOME FUND INSTL Yes $1,001 - $15,000 None $201) (or less than +2.14 VGIAX - VANGUARD GROWTH & INCOME ADMIRAL Yes $15,001 - $50,000 None $201) (or less than +2.15 VEVRX - VICTORY SYCAMORE ESTABLISHED VAL R6 Yes $1,001 - $15,000 None $201) (or less than +2.16 IICIX - VOYA INTERMEDIATE BOND CLASS 1 Yes $1,001 - $15,000 None $201) (or less than +3 Goldman Sachs - Certificate of Deposit N/A $1,001 - $15,000 None $201) (or less than +4 US Bank #2 - Cash N/A $1,001 - $15,000 None $201) (or less than +5 Personal Loan to Mr. Coleman N/A $1,001 - $15,000 None $201) (or less than +6 Personal Loan to Mr. Wright N/A $1,001 - $15,000 None $201) (or less than +7 US Bank #3 - Cash N/A $1,001 - $15,000 None (or less than + +$201) + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $390 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $390 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $156 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1640, ""end"": 1661}, {""label"": ""Description"", ""start"": 1707, ""end"": 1728}, {""label"": ""Description"", ""start"": 1774, ""end"": 1795}, {""label"": ""Description"", ""start"": 2339, ""end"": 2364}, {""label"": ""Description"", ""start"": 2493, ""end"": 2515}, {""label"": ""Description"", ""start"": 2647, ""end"": 2713}, {""label"": ""Description"", ""start"": 2801, ""end"": 2864}, {""label"": ""Description"", ""start"": 2955, ""end"": 3001}, {""label"": ""Description"", ""start"": 3109, ""end"": 3173}, {""label"": ""Description"", ""start"": 3263, ""end"": 3332}, {""label"": ""Description"", ""start"": 3417, ""end"": 3480}, {""label"": ""Description"", ""start"": 3571, ""end"": 3639}, {""label"": ""Description"", ""start"": 3725, ""end"": 3791}, {""label"": ""Description"", ""start"": 3879, ""end"": 3944}, {""label"": ""Description"", ""start"": 4033, ""end"": 4098}, {""label"": ""Description"", ""start"": 4187, ""end"": 4249}, {""label"": ""Description"", ""start"": 4348, ""end"": 4387}, {""label"": ""Description"", ""start"": 4454, ""end"": 4486}, {""label"": ""Description"", ""start"": 4560, ""end"": 4602}, {""label"": ""Description"", ""start"": 4666, ""end"": 4711}, {""label"": ""Description"", ""start"": 4772, ""end"": 4812}, {""label"": ""Description"", ""start"": 4878, ""end"": 4918}, {""label"": ""Description"", ""start"": 4984, ""end"": 5003}, {""label"": ""Description"", ""start"": 5090, ""end"": 5119}, {""label"": ""Description"", ""start"": 5196, ""end"": 5224}, {""label"": ""Description"", ""start"": 5302, ""end"": 5321}, {""label"": ""Amount"", ""start"": 1699, ""end"": 1703}, {""label"": ""Amount"", ""start"": 1766, ""end"": 1770}, {""label"": ""Amount"", ""start"": 1833, ""end"": 1837}, {""label"": ""Amount"", ""start"": 2456, ""end"": 2486}, {""label"": ""Amount"", ""start"": 2610, ""end"": 2640}, {""label"": ""Amount"", ""start"": 2764, ""end"": 2794}, {""label"": ""Amount"", ""start"": 2918, ""end"": 2948}, {""label"": ""Amount"", ""start"": 3072, ""end"": 3102}, {""label"": ""Amount"", ""start"": 3226, ""end"": 3256}, {""label"": ""Amount"", ""start"": 3380, ""end"": 3410}, {""label"": ""Amount"", ""start"": 3534, ""end"": 3564}, {""label"": ""Amount"", ""start"": 3688, ""end"": 3718}, {""label"": ""Amount"", ""start"": 3842, ""end"": 3872}, {""label"": ""Amount"", ""start"": 3996, ""end"": 4026}, {""label"": ""Amount"", ""start"": 4150, ""end"": 4180}, {""label"": ""Amount"", ""start"": 4304, ""end"": 4341}, {""label"": ""Amount"", ""start"": 4420, ""end"": 4447}, {""label"": ""Amount"", ""start"": 4526, ""end"": 4553}, {""label"": ""Amount"", ""start"": 4632, ""end"": 4659}, {""label"": ""Amount"", ""start"": 4738, ""end"": 4765}, {""label"": ""Amount"", ""start"": 4844, ""end"": 4871}, {""label"": ""Amount"", ""start"": 4950, ""end"": 4977}, {""label"": ""Amount"", ""start"": 5056, ""end"": 5083}, {""label"": ""Amount"", ""start"": 5162, ""end"": 5189}, {""label"": ""Amount"", ""start"": 5268, ""end"": 5295}, {""label"": ""Amount"", ""start"": 5374, ""end"": 5408}, {""label"": ""Value"", ""start"": 2415, ""end"": 2452}, {""label"": ""Value"", ""start"": 2723, ""end"": 2760}, {""label"": ""Value"", ""start"": 2877, ""end"": 2914}, {""label"": ""Value"", ""start"": 3031, ""end"": 3068}, {""label"": ""Value"", ""start"": 3185, ""end"": 3222}, {""label"": ""Value"", ""start"": 3339, ""end"": 3376}, {""label"": ""Value"", ""start"": 3493, ""end"": 3530}, {""label"": ""Value"", ""start"": 3647, ""end"": 3684}, {""label"": ""Value"", ""start"": 3801, ""end"": 3838}, {""label"": ""Value"", ""start"": 3955, ""end"": 3981}, {""label"": ""Value"", ""start"": 4109, ""end"": 4146}, {""label"": ""Value"", ""start"": 4263, ""end"": 4300}, {""label"": ""Value"", ""start"": 4400, ""end"": 4418}, {""label"": ""Value"", ""start"": 4506, ""end"": 4524}, {""label"": ""Value"", ""start"": 4612, ""end"": 4630}, {""label"": ""Value"", ""start"": 4718, ""end"": 4736}, {""label"": ""Value"", ""start"": 4824, ""end"": 4842}, {""label"": ""Value"", ""start"": 4930, ""end"": 4948}, {""label"": ""Value"", ""start"": 5036, ""end"": 5054}, {""label"": ""Value"", ""start"": 5142, ""end"": 5160}, {""label"": ""Value"", ""start"": 5248, ""end"": 5266}, {""label"": ""Value"", ""start"": 5354, ""end"": 5372}]" +"109","136","Termination Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +Munoz, Steven A. + +Assistant Chief of Protocol, Chief of Protocol, DOS +Date of Termination: 07/15/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +Steven A. Munoz +User ID: + +07/13/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +Robert L. Nightingale +User ID: + +08/28/2017 + +Other review conducted by + +U.S. Office of Government Ethics Certification + +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 American Southern Group, LLC. Charleston, SC, USA Business Enterprise Proprietor 05/2006 Present + +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 American Southern Group, LLC. N/A Income from personal +services + +$146891 + +3. Filer's Employment Agreements and Arrangements +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +This report has no reported Compensation Exceeding $5,000 + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +This report has no reported Assets + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +# CREDITOR NAME TYPE OF LIABILITY AMOUNT + +YEAR +INCURRED + +INTEREST +RATE TERM + +1 US DEPARTMENT OF EDUCATION Loan $10,001 - +$15,000 + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +2011 4.5% Student Loan 1 + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1265, ""end"": 1294}, {""label"": ""Amount"", ""start"": 1330, ""end"": 1337}]" +"111","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +BERRIOS, JILLIAN B. + +Director of Ops / Confidential Assistant, Deputy Secretary of Defense, OSD +Date of Appointment: 09/11/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +JILLIAN B. BERRIOS +User ID: F5C6286F1C21D1A4 +10/30/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +Dani Irvine +User ID: 693F1B775EA98F74 +12/21/2017 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +ANTHONY G. DEMARTINO +User ID: 1945CD01EA53F11B +12/18/2017 + +U.S. Office of Government Ethics Certification + +Comments of Reviewing Officials (public annotations): + +PART # REFERENCE COMMENT + +2. 1.1 Bond Market Index Fund (12/21/17, Irvine, Dani): VBMFX - Vanguard + +2. 1.2 S&P 500 Index Fund (12/21/17, Irvine, Dani): VOOV - Vanguard S&P 500 Value ETF + +2. 1.3 International Index Fund (12/21/17, Irvine, Dani): SWINX - Schwab International Index Inv + +2. 1.4 Russell 2000 Index Fund (12/21/17, Irvine, Dani): IWM - iShares Russell 2000 +2. 1.6 U.S. Large Companies Fund (12/21/17, Irvine, Dani): VFINX - Vanguard 500 Index Investor + +2. 1.7 Boeing Stock Fund (11/16/17, BERRIOS, JILLIAN B.): This fund primarily consists of Boein +g stock. + +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 The Boeing Company Chicago, 2. Filer's Employment Assets & Income and Retirement Accounts IL, USA Business Enterprise Employee 07/2002 08/2017 +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Boeing Voluntary Investment Plan (401k) N/A None (or less than $1,001) None (or less than $201) +1.1 Bond Market Index Fund Yes $15,001 - $50,000 None (or less than $201) +1.2 S&P 500 Index Fund Yes $50,001 - $100,000 None (or less than $201) +1.3 International Index Fund Yes $100,001 - $250,000 None (or less than $201) +1.4 Russell 2000 Index Fund Yes $15,001 - $50,000 None (or less than $201) +1.5 Financial Engines Stable Value Fund Yes $1,001 - $15,000 None (or less than $201) +1.6 U.S. Large Companies Fund Yes $15,001 - $50,000 None (or less than $201) +1.7 Boeing Stock Fund No $1,001 - $15,000 Capital Gains $201 - $1,000 +2 Boeing Common Stock (BA) N/A $1,001 - $15,000 None (or less than $201) +3 Boeing Pension N/A $50,001 - $100,000 None (or less than $201) +4 Boeing Salary & Bonus N/A Salary $242558 + +3. Filer's Employment Agreements and Arrangements + +EMPLOYER OR OTHER PARTY TO + +# AGREEMENT/ARRANGEMENT CITY/STATE STATUS AND TERMS DATE + +1 Boeing 401(k) Chicago, IL, USA Continuing participation in Employee Benefit Plan: I +continue to maintain this retirement plan with my fo +rmer employer. Neither I nor Boeing continue to make +contributions to this plan. + +2 Boeing Pension Chicago, IL, USA Continuing participation in Employee Benefit Plan: I +will continue to participate in this Defined Benefit +Plan + +07/2002 + +07/2002 + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +# SOURCE NAME CITY, STATE BRIEF DESCRIPTION OF DUTIES + +1 The Boeing Company Chicago, IL Chief of Staff to Senior Vice President for +Supply Chain & Ops business, Commercial Ai +rplanes Programs business, 787 Dreamliner P +rogram, Missile Defense Systems. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 IRA (FBO) No None (or less than $1,001) None (or less than $201) +1.1 U.S. Brokerage Account (cash) N/A $1,001 - $15,000 None (or less than $201) +1.2 Blackrock (BHYIX) Yes $1,001 - $15,000 None (or less than $201) +1.3 Diamond Hill Large Cap (DHLRX) Yes $1,001 - $15,000 $201 - $1,000 +1.4 Edgewood Growth Fund CL (EGFIX) Yes $1,001 - $15,000 $201 - $1,000 +1.5 Glenmede Small Cap (GTSCX) Yes $1,001 - $15,000 $201 - $1,000 +1.6 Hartford Schroders Emerg (SEMNX) Yes $1,001 - $15,000 $1,001 - $2,500 +1.7 ISHARES 1-3 Year (SHY) Yes $1,001 - $15,000 None (or less than $201) +1.8 ISHARES IBOXX $ (LQD) Yes $1,001 - $15,000 $201 - $1,000 +1.9 ISHARES TR CORE MSCI EAF (IEFA) Yes $1,001 - $15,000 None (or less than $201) +1.10 ISHARES US TREASURY BOND (GOVT) Yes $1,001 - $15,000 None (or less than $201) +1.11 John Hancock Disciplined Fund (JVLIX) Yes $1,001 - $15,000 $201 - $1,000 +1.12 MFS Corporate Bond Fund (MBDIX) Yes $1,001 - $15,000 $201 - $1,000 +1.13 OPPENHEIMER International Fund (OIGYX) Yes $1,001 - $15,000 $201 - $1,000 +1.14 PIMCO Foreign Bond FD Fund (PFBPX) Yes $1,001 - $15,000 $201 - $1,000 +1.15 TCW Total Return Fund (TGLMX) Yes $15,001 - $50,000 None (or less than $201) +1.16 The Oakmark Intl Fund (OAKIX) Yes $1,001 - $15,000 $201 - $1,000 +1.17 Vanguard Growth ETF Fund (VUG) Yes $1,001 - $15,000 $201 - $1,000 +1.18 Vanguard Value ETF (VTV) Yes $1,001 - $15,000 $1,001 - $2,500 +2 U.S Bank Accounts (cash) N/A $15,001 - $50,000 None (or less than + +$201) + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 2316, ""end"": 2355}, {""label"": ""Description"", ""start"": 2529, ""end"": 2551}, {""label"": ""Description"", ""start"": 2742, ""end"": 2760}, {""label"": ""Description"", ""start"": 2955, ""end"": 2979}, {""label"": ""Description"", ""start"": 3168, ""end"": 3191}, {""label"": ""Description"", ""start"": 3381, ""end"": 3416}, {""label"": ""Description"", ""start"": 3594, ""end"": 3619}, {""label"": ""Description"", ""start"": 3807, ""end"": 3824}, {""label"": ""Description"", ""start"": 4009, ""end"": 4033}, {""label"": ""Description"", ""start"": 4222, ""end"": 4236}, {""label"": ""Description"", ""start"": 4435, ""end"": 4456}, {""label"": ""Description"", ""start"": 5604, ""end"": 5613}, {""label"": ""Description"", ""start"": 5708, ""end"": 5737}, {""label"": ""Description"", ""start"": 5812, ""end"": 5829}, {""label"": ""Description"", ""start"": 5916, ""end"": 5946}, {""label"": ""Description"", ""start"": 6009, ""end"": 6040}, {""label"": ""Description"", ""start"": 6102, ""end"": 6128}, {""label"": ""Description"", ""start"": 6195, ""end"": 6227}, {""label"": ""Description"", ""start"": 6290, ""end"": 6312}, {""label"": ""Description"", ""start"": 6394, ""end"": 6415}, {""label"": ""Description"", ""start"": 6487, ""end"": 6518}, {""label"": ""Description"", ""start"": 6591, ""end"": 6622}, {""label"": ""Description"", ""start"": 6695, ""end"": 6732}, {""label"": ""Description"", ""start"": 6788, ""end"": 6819}, {""label"": ""Description"", ""start"": 6881, ""end"": 6919}, {""label"": ""Description"", ""start"": 6974, ""end"": 7008}, {""label"": ""Description"", ""start"": 7067, ""end"": 7096}, {""label"": ""Description"", ""start"": 7171, ""end"": 7200}, {""label"": ""Description"", ""start"": 7264, ""end"": 7294}, {""label"": ""Description"", ""start"": 7357, ""end"": 7381}, {""label"": ""Description"", ""start"": 7452, ""end"": 7476}, {""label"": ""Value"", ""start"": 2362, ""end"": 2388}, {""label"": ""Value"", ""start"": 2575, ""end"": 2592}, {""label"": ""Value"", ""start"": 2788, ""end"": 2806}, {""label"": ""Value"", ""start"": 3001, ""end"": 3020}, {""label"": ""Value"", ""start"": 3214, ""end"": 3231}, {""label"": ""Value"", ""start"": 3427, ""end"": 3443}, {""label"": ""Value"", ""start"": 3640, ""end"": 3657}, {""label"": ""Value"", ""start"": 3853, ""end"": 3869}, {""label"": ""Value"", ""start"": 4055, ""end"": 4071}, {""label"": ""Value"", ""start"": 4268, ""end"": 4286}, {""label"": ""Value"", ""start"": 5649, ""end"": 5675}, {""label"": ""Value"", ""start"": 5753, ""end"": 5769}, {""label"": ""Value"", ""start"": 5857, ""end"": 5873}, {""label"": ""Value"", ""start"": 5961, ""end"": 5977}, {""label"": ""Value"", ""start"": 6054, ""end"": 6070}, {""label"": ""Value"", ""start"": 6147, ""end"": 6163}, {""label"": ""Value"", ""start"": 6240, ""end"": 6256}, {""label"": ""Value"", ""start"": 6335, ""end"": 6351}, {""label"": ""Value"", ""start"": 6439, ""end"": 6455}, {""label"": ""Value"", ""start"": 6532, ""end"": 6548}, {""label"": ""Value"", ""start"": 6636, ""end"": 6652}, {""label"": ""Value"", ""start"": 6740, ""end"": 6756}, {""label"": ""Value"", ""start"": 6833, ""end"": 6849}, {""label"": ""Value"", ""start"": 6926, ""end"": 6942}, {""label"": ""Value"", ""start"": 7019, ""end"": 7035}, {""label"": ""Value"", ""start"": 7112, ""end"": 7129}, {""label"": ""Value"", ""start"": 7216, ""end"": 7232}, {""label"": ""Value"", ""start"": 7309, ""end"": 7325}, {""label"": ""Value"", ""start"": 7402, ""end"": 7418}, {""label"": ""Value"", ""start"": 7497, ""end"": 7514}, {""label"": ""Amount"", ""start"": 2411, ""end"": 2435}, {""label"": ""Amount"", ""start"": 2624, ""end"": 2648}, {""label"": ""Amount"", ""start"": 2837, ""end"": 2861}, {""label"": ""Amount"", ""start"": 3050, ""end"": 3074}, {""label"": ""Amount"", ""start"": 3263, ""end"": 3287}, {""label"": ""Amount"", ""start"": 3476, ""end"": 3500}, {""label"": ""Amount"", ""start"": 3689, ""end"": 3713}, {""label"": ""Amount"", ""start"": 3902, ""end"": 3915}, {""label"": ""Amount"", ""start"": 4104, ""end"": 4128}, {""label"": ""Amount"", ""start"": 4317, ""end"": 4341}, {""label"": ""Amount"", ""start"": 4530, ""end"": 4537}, {""label"": ""Amount"", ""start"": 5677, ""end"": 5701}, {""label"": ""Amount"", ""start"": 5781, ""end"": 5805}, {""label"": ""Amount"", ""start"": 5885, ""end"": 5909}, {""label"": ""Amount"", ""start"": 5989, ""end"": 6002}, {""label"": ""Amount"", ""start"": 6082, ""end"": 6095}, {""label"": ""Amount"", ""start"": 6175, ""end"": 6188}, {""label"": ""Amount"", ""start"": 6268, ""end"": 6283}, {""label"": ""Amount"", ""start"": 6363, ""end"": 6387}, {""label"": ""Amount"", ""start"": 6467, ""end"": 6480}, {""label"": ""Amount"", ""start"": 6560, ""end"": 6584}, {""label"": ""Amount"", ""start"": 6664, ""end"": 6688}, {""label"": ""Amount"", ""start"": 6768, ""end"": 6781}, {""label"": ""Amount"", ""start"": 6861, ""end"": 6874}, {""label"": ""Amount"", ""start"": 6954, ""end"": 6967}, {""label"": ""Amount"", ""start"": 7047, ""end"": 7060}, {""label"": ""Amount"", ""start"": 7140, ""end"": 7164}, {""label"": ""Amount"", ""start"": 7244, ""end"": 7257}, {""label"": ""Amount"", ""start"": 7337, ""end"": 7350}, {""label"": ""Amount"", ""start"": 7430, ""end"": 7445}, {""label"": ""Amount"", ""start"": 7525, ""end"": 7550}]" +"112","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel +Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +Rosen, Zvi S +Special Assistant for Legal Affairs, SBA +Date of Appointment: 01/30/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: + +Abraham L. Kaminstein Scholar in Residence, US Copyright Office: (08/01/2015 - 07/30/2016) + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +/s/ Zvi Rosen [electronically signed by Zvi Rosen on 2017-02-15 09:27:52 in FDonline] + +Agency Ethics Official's Opinion - On the basis of information contained in this report, I conclude that the filer is in compliance with applicable laws and regulations +(subject to any comments below) + +/s/ Marilyn Barnes, Super Administrator [electronically signed by Marilyn Barnes on 2017-03-01 17:48:19 in FDonline] + +Other review conducted by: + +U.S. Office of Government Ethics Certification +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE ORG TYPE POSITION FROM TO + +1 George Washington University School of Law Washington, DC, US Law School Professorial Lecturer in Law 01/01/2017 04/30/2017 + +2. Filer's Employment Assets and Income + +None + +3. Filer's Employment Agreements and Arrangements + +None + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +None + +5. Spouse's Employment Assets and Income +None + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 (Stock) NVDA Nvidia Corp. N/A $1,001 - $15,000 None (or less than $201) +2 (Stock) C Citigroup N/A $1,001 - $15,000 None (or less than $201) +3 (Stock) F Ford Motor Corp. N/A $1,001 - $15,000 None (or less than $201) +4 (Stock) MRK Merck N/A $1,001 - $15,000 None (or less than $201) +5 (Stock) ORCL Oracle N/A $1,001 - $15,000 None (or less than $201) +6 (Stock) PFE Pfizer N/A $1,001 - $15,000 None (or less than $201) +7 (Stock) TRV Travelers Group N/A $1,001 - $15,000 None (or less than $201) +8 (Stock) AGN Allergan N/A $1,001 - $15,000 None (or less than $201) +9 (Cash Deposit/Savings) Fidelity Boston, MA, US N/A $100,001 - $250,000 None (or less than $201) +10 (Cash Deposit/Savings) Citibank New York, NY, US Checking/Savings N/A $100,001 - $250,000 None (or less than $201) +11 (Mutual Fund) FSTVX FIDELITY TOTAL MKT INDEX PREMIUM CL Yes $100,001 - $250,000 None (or less than $201) +12 (IRA) Fidelity No +12.1 (Mutual Fund) FASGX-FIDELITY ASSET MANAGER 70% Yes $50,001 - $100,000 None (or less than $201) +13 (Self EI) George Washington University Law School Teaching Law School class as adjunct N/A Salary $4,250.00 +Washington, DC, US + +7. Transactions + +(N/A) - Not required for this type of report + +8. Liabilities + +None + +9. Gifts and Reimbursements + +(N/A) - Not required for this type of report +Endnotes + +PART # ENDNOTE +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable +even if the filer did not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) +positions solely of an honorary nature; (3) positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; +and (5) passive investment interests as a limited partner or non -managing member of a limited liability company. + +2. Filer's Employment Assets and Income + +Part 2 discloses the following: + +Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, +honoraria, scholarships, and prizes) +Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or +(2) produced more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their +underlying holdings as appropriate, deferred compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, +employment, or other income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount +of income is $0 - $200 or if the asset qualifies as an excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), +such as the following: + +Future employment +Leave of absence +Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current +employer) +Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan +Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share +of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting +period. The filer discloses payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the +source made its payment to the filer's employer and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the +services for which the client is paying. + +5. Spouse's Employment Assets and Income +Part 5 discloses the following: + +Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and +partnership share) +Sources of honoraria for the filer's spouse greater than $200 during the reporting period +Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater +than $1,000 or (2) produced more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans +/accounts and their underlying holdings as appropriate, deferred compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, +employment, or other income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of +income is $0 - $200 or if the asset qualifies as an excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding +honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment +income during the reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and +dependent children. This section does not include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) +income or retirement benefits associated with United States Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money +market accounts) at a single financial institution with a value of $5,000 or less (unless more than $200 of income was produced). Additional exceptions apply. Note: The +type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child +during reporting period. This section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., +checking, savings, CDs, money market accounts) and money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings +Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the +following types of liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, +household furniture, or appliances, unless the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the +outstanding liability did not exceed $10,000 at the end of the reporting period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not +include the following items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local +governments; (3) bequests and other forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) +gifts of hospitality (food, lodging, entertainment) at the donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children +totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act +of 2012 (Pub. L. 112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The +primary use of the information on this report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may +also be disclosed upon request to any requesting person in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect +applications for public access of your own form upon request. Additional disclosures of the information on this report may be made: (1) to any requesting person, subject +to the limitation contained in section 208(d)(1) of title 18, any determination granting an exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a +Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential violations of law or regulation; (3) to another Federal +agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with a judge -issued subpoena; (4) to a +source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records Administration or +the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a +party to litigation or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new +office, department or agency when an employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in +response to an inquiry made on behalf of an individual who is the subject of the record; (10) to contractors and other non -Government employees working on a contract, +service or assignment for the Federal Government when necessary to accomplish a function related to an OGE Government -wide system of records; and (11) on the +OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an individual nominated by the President to a position requiring +Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and +completing the form. Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, +to the Program Counsel, U.S. Office of Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information +unless it displays a currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1708, ""end"": 1733}, {""label"": ""Description"", ""start"": 1844, ""end"": 1863}, {""label"": ""Description"", ""start"": 1980, ""end"": 2006}, {""label"": ""Description"", ""start"": 2116, ""end"": 2133}, {""label"": ""Description"", ""start"": 2252, ""end"": 2271}, {""label"": ""Description"", ""start"": 2388, ""end"": 2406}, {""label"": ""Description"", ""start"": 2524, ""end"": 2551}, {""label"": ""Description"", ""start"": 2660, ""end"": 2680}, {""label"": ""Description"", ""start"": 2796, ""end"": 2842}, {""label"": ""Description"", ""start"": 2932, ""end"": 2997}, {""label"": ""Description"", ""start"": 3068, ""end"": 3123}, {""label"": ""Description"", ""start"": 3204, ""end"": 3218}, {""label"": ""Description"", ""start"": 3280, ""end"": 3326}, {""label"": ""Description"", ""start"": 3413, ""end"": 3499}, {""label"": ""Description"", ""start"": 3521, ""end"": 3539}, {""label"": ""Value"", ""start"": 1779, ""end"": 1795}, {""label"": ""Value"", ""start"": 1915, ""end"": 1931}, {""label"": ""Value"", ""start"": 2051, ""end"": 2067}, {""label"": ""Value"", ""start"": 2187, ""end"": 2203}, {""label"": ""Value"", ""start"": 2323, ""end"": 2339}, {""label"": ""Value"", ""start"": 2459, ""end"": 2475}, {""label"": ""Value"", ""start"": 2595, ""end"": 2611}, {""label"": ""Value"", ""start"": 2731, ""end"": 2747}, {""label"": ""Value"", ""start"": 2867, ""end"": 2886}, {""label"": ""Value"", ""start"": 3003, ""end"": 3022}, {""label"": ""Value"", ""start"": 3139, ""end"": 3158}, {""label"": ""Value"", ""start"": 3351, ""end"": 3369}, {""label"": ""Amount"", ""start"": 1813, ""end"": 1837}, {""label"": ""Amount"", ""start"": 1949, ""end"": 1973}, {""label"": ""Amount"", ""start"": 2085, ""end"": 2109}, {""label"": ""Amount"", ""start"": 2221, ""end"": 2245}, {""label"": ""Amount"", ""start"": 2357, ""end"": 2381}, {""label"": ""Amount"", ""start"": 2493, ""end"": 2517}, {""label"": ""Amount"", ""start"": 2629, ""end"": 2653}, {""label"": ""Amount"", ""start"": 2765, ""end"": 2789}, {""label"": ""Amount"", ""start"": 2901, ""end"": 2925}, {""label"": ""Amount"", ""start"": 3037, ""end"": 3061}, {""label"": ""Amount"", ""start"": 3173, ""end"": 3197}, {""label"": ""Amount"", ""start"": 3385, ""end"": 3409}, {""label"": ""Amount"", ""start"": 3511, ""end"": 3520}]" +"113","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +Wellner, Kathryn M. + +Deputy Assistance Secretary, U.S. Department of State, State +Date of Appointment: 01/23/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +Kathryn M. Wellner +User ID: + +02/17/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +Sarah E. Taylor +User ID: + +02/21/2017 + +Other review conducted by + +U.S. Office of Government Ethics Certification + +1. Filer Positions Held outside United States Government +This report has no reported Positions Held outside United States Government + +2. Filer's Employment Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +2 Campaign Salary N/A Salary $109203 + +3. Filer Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +This report has no reported Compensation Exceeding $5,000 + +5. Spouse's Employment Assets and Income + +This report has no reported Assets + +6. Other Assets and Income + +This report has no reported Assets + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside the United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets and Income + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets and Income + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1180, ""end"": 1195}, {""label"": ""Amount"", ""start"": 1207, ""end"": 1214}]" +"119","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +Davis, IV, Addison D. + +Principal Dept Asst Secretary of Defense, Energy, Installations & Environment, OSD +Date of Appointment: 09/05/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +Addison D. Davis, IV +User ID: 53F03443EAD69794 +10/12/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +KAREN L. DALHEIM +User ID: 6A84147D70FCE634 +12/20/2017 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +LUCIAN NIEMEYER +User ID: EA29D2E540A11AB9 +12/20/2017 + +U.S. Office of Government Ethics Certification + +Comments of Reviewing Officials (public annotations): + +PART # REFERENCE COMMENT + +2. 2 State of North Carolina 401k (12/20/17, Irvine, Dani): This and underlying assets should have ""empl +oyment related"" checked next year to ensure all fall under Part 2 in t +he .pdf/print version.. +6. 2 Fidelity Adv Asset Manager (11/30/17, DALHEIM, KAREN L.): Fidelity Adv Asset Manager 85% CL 1 FAM +RX + +6. 3 Fidelity Adv New Insights (11/30/17, DALHEIM, KAREN L.): Fidelity Adv New Insight CL 1 FINSX + +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO +1 FTCC Foundation Board of Directors Fayetteville, NC, USA Educational tion Institu Director 07/2016 09/2017 +2 RLUAC Board of Directors Fayetteville, NC, USA Non -Profit tion Organiza Director 11/2015 10/2017 +3 Sustainable Sandhills Fayetteville, NC, USA Non -Profit tion Organiza Director 04/2016 09/2017 +4 Town of Spring Lake Spring Lake, NC, USA Stae/Local nt Governme City Manager 07/2013 09/2017 + +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Corvias 401k (Mainspring Managed Acct 40) Yes $15,001 - $50,000 Dividends $2,501 - $5,000 + +2 State of North Carolina 401k N/A None (or less than +$1,001) + +3 City Manager, Spring Lake, NC N/A Salary $167000 + +None (or less than +$201) + +3. Filer's Employment Agreements and Arrangements + +EMPLOYER OR OTHER PARTY TO + +# AGREEMENT/ARRANGEMENT CITY/STATE STATUS AND TERMS DATE + +1 Corvias Group East Greenwich, RI, USA Continuing participation in Employee Benefit Plan: M +aintain employee retirement plan with my former emplo +yer; neither I nor Corvias continue to make contribut +ions to this plan. + +2 State of North Carolina Spring Lake, NC, USA Continuing participation in Employee Benefit Plan: M +aintain employee retirement plan with my former emplo +yer; neither I nor the State of NC continue to make c +ontributions to this plan. + +12/2013 + +07/2015 + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +# SOURCE NAME CITY, STATE BRIEF DESCRIPTION OF DUTIES + +1 Town of Spring Lake Spring Lake, NC City Manager for Town of Spring Lake; respo +nsible for day to day operation of the town +to include fire, police, utilities, parks, +streets, and sanitation. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Arlington County Schools 403b Retirement Cornerstone +B + +Yes $100,001 - $250,000 Dividends $5,001 - $15,000 +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Rental Condominium, Garden City, SC N/A $250,001 - $500,000 Rent and Royalties $5,001 - $15,000 +2 Fidelity Adv Asset Manager Yes $50,001 - $100,000 Dividends $2,501 - $5,000 +3 Fidelity Adv New Insights Yes $15,001 - $50,000 Dividends $1,001 - $2,500 +4 Bank of America N/A $50,001 - $100,000 Interest $201 - $1,000 +5 Model Wealth Portfolios N/A None (or less than $1,001) None (or less than $201) +5.1 BBH Core Select CL N Yes $1,001 - $15,000 None (or less than $201) +5.2 Clearbridge Value CL I Yes $15,001 - $50,000 Dividends $2,501 - $5,000 +5.3 Eaton Vance Parametric Tax Managed Emerging Markets nstl CL I Yes $1,001 - $15,000 None (or less than $201) +5.4 Harbor Mid Cap Value Instl CL Yes $1,001 - $15,000 None (or less than $201) +5.5 JOHCM Intl Select CL II Yes $1,001 - $15,000 Dividends $1,001 - $2,500 +5.6 Loomis Sayles Growth CL Y Yes $1,001 - $15,000 Dividends $1,001 - $2,500 +5.7 Nuveen High yield Mun Bond CL I Yes $1,001 - $15,000 None (or less than $201) +5.8 Oppenheimer Main Street Small Cap CL Y Yes $1,001 - $15,000 Dividends $1,001 - $2,500 +5.9 Prime Cap Odyssey Growth Yes $15,001 - $50,000 Dividends $2,501 - $5,000 +5.10 T Rowe Price Summit Mun Intermediate Yes $15,001 - $50,000 None (or less than $201) +5.11 Wells Fargo Intermediate Tax Amt Free Instl CL Yes $15,001 - $50,000 Dividends $201 - $1,000 +5.1 NC Stable Value fund Yes $1,001 - $15,000 None (or less than $201) +5.2 NC Fixed Income Fund Yes $1,001 - $15,000 None (or less than $201) +5.3 NC Income Index FD Yes $1,001 - $15,000 None (or less than + +$201) + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 2356, ""end"": 2397}, {""label"": ""Description"", ""start"": 2449, ""end"": 2477}, {""label"": ""Description"", ""start"": 2512, ""end"": 2541}, {""label"": ""Description"", ""start"": 3630, ""end"": 3684}, {""label"": ""Description"", ""start"": 3907, ""end"": 3942}, {""label"": ""Description"", ""start"": 4046, ""end"": 4072}, {""label"": ""Description"", ""start"": 4184, ""end"": 4209}, {""label"": ""Description"", ""start"": 4322, ""end"": 4337}, {""label"": ""Description"", ""start"": 4458, ""end"": 4481}, {""label"": ""Description"", ""start"": 4605, ""end"": 4625}, {""label"": ""Description"", ""start"": 4752, ""end"": 4774}, {""label"": ""Description"", ""start"": 4890, ""end"": 4952}, {""label"": ""Description"", ""start"": 5037, ""end"": 5066}, {""label"": ""Description"", ""start"": 5184, ""end"": 5207}, {""label"": ""Description"", ""start"": 5322, ""end"": 5347}, {""label"": ""Description"", ""start"": 5460, ""end"": 5491}, {""label"": ""Description"", ""start"": 5607, ""end"": 5645}, {""label"": ""Description"", ""start"": 5745, ""end"": 5769}, {""label"": ""Description"", ""start"": 5883, ""end"": 5919}, {""label"": ""Description"", ""start"": 6030, ""end"": 6076}, {""label"": ""Description"", ""start"": 6166, ""end"": 6186}, {""label"": ""Description"", ""start"": 6313, ""end"": 6333}, {""label"": ""Description"", ""start"": 6460, ""end"": 6478}, {""label"": ""Value"", ""start"": 2402, ""end"": 2419}, {""label"": ""Value"", ""start"": 2482, ""end"": 2508}, {""label"": ""Value"", ""start"": 3690, ""end"": 3709}, {""label"": ""Value"", ""start"": 3975, ""end"": 3994}, {""label"": ""Value"", ""start"": 4114, ""end"": 4132}, {""label"": ""Value"", ""start"": 4252, ""end"": 4269}, {""label"": ""Value"", ""start"": 4390, ""end"": 4408}, {""label"": ""Value"", ""start"": 4526, ""end"": 4552}, {""label"": ""Value"", ""start"": 4673, ""end"": 4689}, {""label"": ""Value"", ""start"": 4820, ""end"": 4837}, {""label"": ""Value"", ""start"": 4958, ""end"": 4974}, {""label"": ""Value"", ""start"": 5105, ""end"": 5121}, {""label"": ""Value"", ""start"": 5252, ""end"": 5268}, {""label"": ""Value"", ""start"": 5390, ""end"": 5406}, {""label"": ""Value"", ""start"": 5528, ""end"": 5544}, {""label"": ""Value"", ""start"": 5675, ""end"": 5691}, {""label"": ""Value"", ""start"": 5813, ""end"": 5830}, {""label"": ""Value"", ""start"": 5951, ""end"": 5968}, {""label"": ""Value"", ""start"": 6098, ""end"": 6115}, {""label"": ""Value"", ""start"": 6234, ""end"": 6250}, {""label"": ""Value"", ""start"": 6381, ""end"": 6397}, {""label"": ""Value"", ""start"": 6528, ""end"": 6544}, {""label"": ""Amount"", ""start"": 2430, ""end"": 2445}, {""label"": ""Amount"", ""start"": 2553, ""end"": 2586}, {""label"": ""Amount"", ""start"": 3720, ""end"": 3736}, {""label"": ""Amount"", ""start"": 4023, ""end"": 4039}, {""label"": ""Amount"", ""start"": 4162, ""end"": 4177}, {""label"": ""Amount"", ""start"": 4300, ""end"": 4315}, {""label"": ""Amount"", ""start"": 4438, ""end"": 4451}, {""label"": ""Amount"", ""start"": 4574, ""end"": 4598}, {""label"": ""Amount"", ""start"": 4721, ""end"": 4745}, {""label"": ""Amount"", ""start"": 4868, ""end"": 4883}, {""label"": ""Amount"", ""start"": 5006, ""end"": 5030}, {""label"": ""Amount"", ""start"": 5153, ""end"": 5177}, {""label"": ""Amount"", ""start"": 5300, ""end"": 5315}, {""label"": ""Amount"", ""start"": 5438, ""end"": 5453}, {""label"": ""Amount"", ""start"": 5576, ""end"": 5600}, {""label"": ""Amount"", ""start"": 5723, ""end"": 5738}, {""label"": ""Amount"", ""start"": 5861, ""end"": 5876}, {""label"": ""Amount"", ""start"": 5999, ""end"": 6023}, {""label"": ""Amount"", ""start"": 6146, ""end"": 6159}, {""label"": ""Amount"", ""start"": 6282, ""end"": 6306}, {""label"": ""Amount"", ""start"": 6429, ""end"": 6453}, {""label"": ""Amount"", ""start"": 6576, ""end"": 6601}]" +"121","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +L'ETOILE, JOSEPH A. + +Senior Advisor, ASD Readiness, OSD +Date of Appointment: 07/31/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +JOSEPH A. L'ETOILE +User ID: 0D5F2E4E45FD901A +08/23/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +JEFFREY A. GREEN +User ID: 06EEE68944867E81 +11/20/2017 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +ELIZABETH P. VAN WINKLE +User ID: 2106B18C1372B173 +09/07/2017 + +U.S. Office of Government Ethics Certification + +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 Orbis Operations LLC McLean, VA, USA Business Enterprise General Partner 10/2009 07/2017 +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Orbis Operations LLC 401K managed by Nationwide Yes $15,001 - $50,000 None (or $201) less than +1.1 AB LgCap Gr K No $1,001 - $15,000 None (or $201) less than +1.2 AmFds New WId R3 No $1,001 - $15,000 None (or $201) less than +1.3 Col Bal A No $1,001 - $15,000 None (or $201) less than +1.4 JPM Eq Inc R3 N/A $1,001 - $15,000 None (or $201) less than +1.5 EV Inc Fd of Boston A No $1,001 - $15,000 None (or $201) less than +1.6 Vic Syc Estblshd Val A No $1,001 - $15,000 None (or $201) less than +1.7 Ptnm Conv Sec A No $1,001 - $15,000 None (or $201) less than +1.8 Prncpl RealEst Sec A No $1,001 - $15,000 None (or $201) less than +1.9 Payden GNMA Adv No $1,001 - $15,000 None (or $201) less than +1.10 NW S P 500 Indx Svc No $1,001 - $15,000 None (or $201) less than +2 Stock ownership in Orbis Operations LLC N/A $500,001 - $1,000,000 None (or $201) less than +3 Lexington Solutions Grup (1099) N/A Income from personal services $20930 +4 Orbis Operations LLC N/A Salary $244933 + +3. Filer's Employment Agreements and Arrangements + +EMPLOYER OR OTHER PARTY TO + +# AGREEMENT/ARRANGEMENT CITY/STATE STATUS AND TERMS DATE + +1 Orbis Operations McLean, VA, USA Stock Option: My previous organization, Orbis Operat +ions LLC granted me Non -Statutory Options + +2 Orbis Operations McLean, VA, USA Continuing participation in Employee Benefit Plan: I +continue to maintain a 401k with my former employer +(Orbis) and neither me or Orbis continue to make con +tributions to this plan. + +06/2012 + +10/2010 + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +# SOURCE NAME CITY, STATE BRIEF DESCRIPTION OF DUTIES + +1 Lexington Group Stafford, VA Consulting to the Marine Corps' Information +Operations Center. + +5. Spouse's Employment Assets & Income and Retirement Accounts +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Wells Fargo Savings Account N/A $15,001 - $50,000 None $201) (or less than +2 Wells Fargo Checking Account N/A $1,001 - $15,000 None $201) (or less than +3 Bank of America Savings Account N/A $1,001 - $15,000 None $201) (or less than +4 Property in San Bernardino CA N/A $15,001 - $50,000 None $201) (or less than +5 USAA USBLX Growth and Tax Strategy Fund Yes $1,001 - $15,000 None $201) (or less than +6 USAA Nasdaq -100 Index Fund (USNQX) Yes $15,001 - $50,000 None $201) (or less than +6.1 Apple Inc N/A $1,001 - $15,000 None $201) (or less than +6.2 Microsoft Corp N/A $1,001 - $15,000 None $201) (or less than +6.3 Amazon.com INC N/A $1,001 - $15,000 None $201) (or less than +6.4 Facebook INC-A N/A $1,001 - $15,000 None $201) (or less than +7 USAA Cornerstone Conservative Fund (USCCX) Yes $15,001 - $50,000 None $201) (or less than +7.1 USAA INCOME FUND-INST No $1,001 - $15,000 None $201) (or less than +7.2 USAA INTERMEDIATE -TERM BD -IS No $1,001 - $15,000 None $201) (or less than +7.3 USAA GOVERNMENT SECURITIES INSTITUTIONAL No $1,001 - $15,000 None $201) (or less than +7.4 USAA SHORT TERM BOND FD-INST N/A $1,001 - $15,000 None $201) (or less than +8 USAA High Income Fund (USHYX) Yes $1,001 - $15,000 None $201) (or less than +9 Microsoft (MFST) N/A $1,001 - $15,000 None $201) (or less than +10 FORD (F) N/A $1,001 - $15,000 None $201) (or less than +11 Coca Cola (KO) N/A $1,001 - $15,000 None (or less than + +$201) + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1464, ""end"": 1512}, {""label"": ""Description"", ""start"": 1622, ""end"": 1635}, {""label"": ""Description"", ""start"": 1780, ""end"": 1796}, {""label"": ""Description"", ""start"": 1938, ""end"": 1947}, {""label"": ""Description"", ""start"": 2096, ""end"": 2109}, {""label"": ""Description"", ""start"": 2254, ""end"": 2275}, {""label"": ""Description"", ""start"": 2412, ""end"": 2434}, {""label"": ""Description"", ""start"": 2570, ""end"": 2585}, {""label"": ""Description"", ""start"": 2728, ""end"": 2748}, {""label"": ""Description"", ""start"": 2886, ""end"": 2901}, {""label"": ""Description"", ""start"": 3044, ""end"": 3063}, {""label"": ""Description"", ""start"": 3202, ""end"": 3255}, {""label"": ""Description"", ""start"": 3360, ""end"": 3393}, {""label"": ""Description"", ""start"": 3498, ""end"": 3518}, {""label"": ""Description"", ""start"": 4573, ""end"": 4600}, {""label"": ""Description"", ""start"": 4680, ""end"": 4708}, {""label"": ""Description"", ""start"": 4787, ""end"": 4818}, {""label"": ""Description"", ""start"": 4894, ""end"": 4923}, {""label"": ""Description"", ""start"": 5001, ""end"": 5039}, {""label"": ""Description"", ""start"": 5108, ""end"": 5143}, {""label"": ""Description"", ""start"": 5215, ""end"": 5224}, {""label"": ""Description"", ""start"": 5322, ""end"": 5336}, {""label"": ""Description"", ""start"": 5429, ""end"": 5443}, {""label"": ""Description"", ""start"": 5536, ""end"": 5550}, {""label"": ""Description"", ""start"": 5643, ""end"": 5685}, {""label"": ""Description"", ""start"": 5750, ""end"": 5771}, {""label"": ""Description"", ""start"": 5857, ""end"": 5887}, {""label"": ""Description"", ""start"": 5964, ""end"": 6003}, {""label"": ""Description"", ""start"": 6071, ""end"": 6099}, {""label"": ""Description"", ""start"": 6178, ""end"": 6207}, {""label"": ""Description"", ""start"": 6285, ""end"": 6301}, {""label"": ""Description"", ""start"": 6392, ""end"": 6400}, {""label"": ""Description"", ""start"": 6499, ""end"": 6513}, {""label"": ""Value"", ""start"": 1524, ""end"": 1556}, {""label"": ""Value"", ""start"": 1682, ""end"": 1714}, {""label"": ""Value"", ""start"": 1840, ""end"": 1872}, {""label"": ""Value"", ""start"": 1998, ""end"": 2030}, {""label"": ""Value"", ""start"": 2156, ""end"": 2188}, {""label"": ""Value"", ""start"": 2314, ""end"": 2346}, {""label"": ""Value"", ""start"": 2472, ""end"": 2504}, {""label"": ""Value"", ""start"": 2630, ""end"": 2662}, {""label"": ""Value"", ""start"": 2788, ""end"": 2820}, {""label"": ""Value"", ""start"": 2946, ""end"": 2978}, {""label"": ""Value"", ""start"": 3104, ""end"": 3136}, {""label"": ""Value"", ""start"": 3262, ""end"": 3283}, {""label"": ""Value"", ""start"": 4622, ""end"": 4640}, {""label"": ""Value"", ""start"": 4729, ""end"": 4747}, {""label"": ""Value"", ""start"": 4836, ""end"": 4854}, {""label"": ""Value"", ""start"": 4943, ""end"": 4961}, {""label"": ""Value"", ""start"": 5050, ""end"": 5068}, {""label"": ""Value"", ""start"": 5157, ""end"": 5175}, {""label"": ""Value"", ""start"": 5264, ""end"": 5282}, {""label"": ""Value"", ""start"": 5371, ""end"": 5389}, {""label"": ""Value"", ""start"": 5478, ""end"": 5496}, {""label"": ""Value"", ""start"": 5585, ""end"": 5603}, {""label"": ""Value"", ""start"": 5692, ""end"": 5710}, {""label"": ""Value"", ""start"": 5799, ""end"": 5817}, {""label"": ""Value"", ""start"": 5906, ""end"": 5924}, {""label"": ""Value"", ""start"": 6013, ""end"": 6031}, {""label"": ""Value"", ""start"": 6120, ""end"": 6138}, {""label"": ""Value"", ""start"": 6227, ""end"": 6245}, {""label"": ""Value"", ""start"": 6334, ""end"": 6352}, {""label"": ""Value"", ""start"": 6441, ""end"": 6459}, {""label"": ""Value"", ""start"": 6548, ""end"": 6566}, {""label"": ""Amount"", ""start"": 1589, ""end"": 1615}, {""label"": ""Amount"", ""start"": 1747, ""end"": 1773}, {""label"": ""Amount"", ""start"": 1905, ""end"": 1931}, {""label"": ""Amount"", ""start"": 2063, ""end"": 2089}, {""label"": ""Amount"", ""start"": 2221, ""end"": 2247}, {""label"": ""Amount"", ""start"": 2379, ""end"": 2405}, {""label"": ""Amount"", ""start"": 2537, ""end"": 2563}, {""label"": ""Amount"", ""start"": 2695, ""end"": 2721}, {""label"": ""Amount"", ""start"": 2853, ""end"": 2879}, {""label"": ""Amount"", ""start"": 3011, ""end"": 3037}, {""label"": ""Amount"", ""start"": 3169, ""end"": 3195}, {""label"": ""Amount"", ""start"": 3327, ""end"": 3353}, {""label"": ""Amount"", ""start"": 3485, ""end"": 3491}, {""label"": ""Amount"", ""start"": 3623, ""end"": 3630}, {""label"": ""Amount"", ""start"": 4644, ""end"": 4674}, {""label"": ""Amount"", ""start"": 4751, ""end"": 4781}, {""label"": ""Amount"", ""start"": 4858, ""end"": 4888}, {""label"": ""Amount"", ""start"": 4965, ""end"": 4995}, {""label"": ""Amount"", ""start"": 5072, ""end"": 5102}, {""label"": ""Amount"", ""start"": 5179, ""end"": 5209}, {""label"": ""Amount"", ""start"": 5286, ""end"": 5316}, {""label"": ""Amount"", ""start"": 5393, ""end"": 5423}, {""label"": ""Amount"", ""start"": 5500, ""end"": 5530}, {""label"": ""Amount"", ""start"": 5607, ""end"": 5637}, {""label"": ""Amount"", ""start"": 5714, ""end"": 5744}, {""label"": ""Amount"", ""start"": 5821, ""end"": 5851}, {""label"": ""Amount"", ""start"": 5928, ""end"": 5958}, {""label"": ""Amount"", ""start"": 6035, ""end"": 6065}, {""label"": ""Amount"", ""start"": 6142, ""end"": 6172}, {""label"": ""Amount"", ""start"": 6249, ""end"": 6279}, {""label"": ""Amount"", ""start"": 6356, ""end"": 6386}, {""label"": ""Amount"", ""start"": 6463, ""end"": 6493}, {""label"": ""Amount"", ""start"": 6570, ""end"": 6607}]" +"126","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +MIKULA, NICHOLAS A. + +Special Assistant, OUSD(I), OSD +Date of Appointment: 10/21/2018 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +NICHOLAS A. MIKULA +User ID: 3fa237dd6087f998465b170feb10e75423726d2fb1e58d2378fd9bd22e7916edf06e65157aea +11/29/2018 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +JEFFREY A. GREEN +User ID: aebeb4cbb6ddd27dbcbc7fb9c2025f56d717fb38ab2db24d2fafb6b32e899342a135b381 +12/20/2018 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +THOMAS L. BROWN +User ID: b19907bd60fb3f7de5f9e254a7c09fa0852fb939fcae2565e0c6d27a751cd7582125c07ae51b +12/19/2018 + +U.S. Office of Government Ethics Certification + +1. Filer's Positions Held Outside United States Government +This report has no reported Positions Held Outside United States Government + +2. Filer's Employment Assets & Income and Retirement Accounts +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Retirement 401K Competitive Carriers Association No None (or less than $201) +1.1 JPMorgan Government Bond Fund - Class A Yes $1,001 - $15,000 $2,501 - $5,000 +1.2 PIMCO Total Return Fund - Class A Yes $1,001 - $15,000 $1,001 - $2,500 +1.3 Invesco Comstock Fund - Class A Yes $1,001 - $15,000 $2,501 - $5,000 +1.4 Alger Capital Appreciation Instutional Fund - Class I Yes $1,001 - $15,000 $2,501 - $5,000 +1.5 Oppenheimer Main Street Mid Cap Fund - Class A Yes $1,001 - $15,000 $1,001 - $2,500 +1.6 State Street S&P MidCap Index Non -Lending Series Fund Yes - Class J $1,001 - $15,000 Interest $1,001 - $2,500 +1.7 American Century Heritage Fund - Class A Yes $1,001 - $15,000 Interest $1,001 - $2,500 +1.8 Goldman Sachs Small Cap Value Fund - Class A Yes $1,001 - $15,000 Interest $1,001 - $2,500 +1.9 Putnam International Capital Opportunities Fund - Cla Yes ss A $1,001 - $15,000 Interest $1,001 - $2,500 +1.10 Oppenheimer Global Fund - Class A Yes $1,001 - $15,000 Interest $1,001 - $2,500 +1.11 State Street REIT Index Non -Lending Series Fund - Cla Yes ss G $1,001 - $15,000 Interest $1,001 - $2,500 + +3. Filer's Employment Agreements and Arrangements + +EMPLOYER OR OTHER PARTY TO + +# AGREEMENT/ARRANGEMENT CITY/STATE STATUS AND TERMS DATE + +1 Competitive Carriers Association Washington, DC, USA Continuing participation in Employee Benefit Plan: N +either my former employer nor I continue to contribut +e to the 401k. + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +This report has no reported Compensation Exceeding $5,000 + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +10/2011 + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 U.S. Bank Account Cash #1 N/A $1,001 - $15,000 None $201) (or less than +2 U.S. Bank Account Cash #2 N/A $1,001 - $15,000 None $201) (or less than +3 Brokerage Account No None $201) (or less than +3.1 Sweeping Account - Cash N/A $1,001 - $15,000 None (or less than + +$201) + +7. Transactions + +This report has no reported Transactions +8. Liabilities + +# CREDITOR NAME TYPE OF LIABILITY AMOUNT + +YEAR +INCURRED + +INTEREST +RATE TERM + +1 Congressional Federal Loan $15,001 - +$50,000 + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +2017 9.74% 3 + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $390 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $390 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $156 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1543, ""end"": 1591}, {""label"": ""Description"", ""start"": 1675, ""end"": 1714}, {""label"": ""Description"", ""start"": 1798, ""end"": 1831}, {""label"": ""Description"", ""start"": 1921, ""end"": 1952}, {""label"": ""Description"", ""start"": 2044, ""end"": 2097}, {""label"": ""Description"", ""start"": 2167, ""end"": 2213}, {""label"": ""Description"", ""start"": 2290, ""end"": 2344}, {""label"": ""Description"", ""start"": 2349, ""end"": 2358}, {""label"": ""Description"", ""start"": 2413, ""end"": 2453}, {""label"": ""Description"", ""start"": 2536, ""end"": 2580}, {""label"": ""Description"", ""start"": 2659, ""end"": 2712}, {""label"": ""Description"", ""start"": 2717, ""end"": 2721}, {""label"": ""Description"", ""start"": 2782, ""end"": 2815}, {""label"": ""Description"", ""start"": 2905, ""end"": 2959}, {""label"": ""Description"", ""start"": 2964, ""end"": 2968}, {""label"": ""Description"", ""start"": 3677, ""end"": 3706}, {""label"": ""Description"", ""start"": 3770, ""end"": 3799}, {""label"": ""Description"", ""start"": 3863, ""end"": 3880}, {""label"": ""Description"", ""start"": 3956, ""end"": 3981}, {""label"": ""Amount"", ""start"": 1644, ""end"": 1668}, {""label"": ""Amount"", ""start"": 1776, ""end"": 1791}, {""label"": ""Amount"", ""start"": 1899, ""end"": 1914}, {""label"": ""Amount"", ""start"": 2022, ""end"": 2037}, {""label"": ""Amount"", ""start"": 2145, ""end"": 2160}, {""label"": ""Amount"", ""start"": 2268, ""end"": 2283}, {""label"": ""Amount"", ""start"": 2391, ""end"": 2406}, {""label"": ""Amount"", ""start"": 2514, ""end"": 2529}, {""label"": ""Amount"", ""start"": 2637, ""end"": 2652}, {""label"": ""Amount"", ""start"": 2760, ""end"": 2775}, {""label"": ""Amount"", ""start"": 2883, ""end"": 2898}, {""label"": ""Amount"", ""start"": 3006, ""end"": 3021}, {""label"": ""Amount"", ""start"": 3734, ""end"": 3764}, {""label"": ""Amount"", ""start"": 3827, ""end"": 3857}, {""label"": ""Amount"", ""start"": 3920, ""end"": 3950}, {""label"": ""Amount"", ""start"": 4013, ""end"": 4050}, {""label"": ""Value"", ""start"": 1745, ""end"": 1761}, {""label"": ""Value"", ""start"": 1868, ""end"": 1884}, {""label"": ""Value"", ""start"": 1991, ""end"": 2007}, {""label"": ""Value"", ""start"": 2114, ""end"": 2130}, {""label"": ""Value"", ""start"": 2237, ""end"": 2253}, {""label"": ""Value"", ""start"": 2360, ""end"": 2376}, {""label"": ""Value"", ""start"": 2483, ""end"": 2499}, {""label"": ""Value"", ""start"": 2606, ""end"": 2622}, {""label"": ""Value"", ""start"": 2729, ""end"": 2745}, {""label"": ""Value"", ""start"": 2852, ""end"": 2868}, {""label"": ""Value"", ""start"": 2975, ""end"": 2991}, {""label"": ""Value"", ""start"": 3713, ""end"": 3730}, {""label"": ""Value"", ""start"": 3806, ""end"": 3823}, {""label"": ""Value"", ""start"": 3992, ""end"": 4009}]" +"127","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +Mooney, Thomas F. + +Deputy White House Liaison, OSD, OSD +Date of Appointment: 02/27/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +Thomas F. Mooney +User ID: 1BA38C4F54317069 +05/01/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +Other review conducted by + +U.S. Office of Government Ethics Certification + +Comments of Reviewing Officials (public annotations): + +PART # REFERENCE COMMENT + +2. 1 Vanguard Institutional Target Retirement 2040 Fund (LMI) (07/17/17, MONDAY, RENEE M.): This fund is both filer's 404(b) and 401 +(a) retirement accounts. + +4. 1 LMI (07/17/17, MONDAY, RENEE M.): Filer clarified that clients were federa +l agencies. + +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 LMI McLean, VA, USA Non -Profit Organiza +tion + +Consultant 01/2009 02/2017 + +2 Republican Party of Wisconsin Madison, WI, WI, USA Non -Profit Organiza +tion + +Volunteer Uncompensa +ted + +10/2016 11/2016 +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Vanguard Institutional Target Retirement 2040 Fund (L +MI) + +2 LMI N/A Salary $115000 + +3 LMI Bonus (5,000.00) N/A Bonus $5000 + +Yes $15,001 - $50,000 None (or less than +$201) + +3. Filer's Employment Agreements and Arrangements + +EMPLOYER OR OTHER PARTY TO + +# AGREEMENT/ARRANGEMENT CITY/STATE STATUS AND TERMS DATE + +1 LMI Tyson's Corner, VA, USA Vanguard Retirement -2040 Fund: Neither me nor my pr +ior employer continues to contribute to this retireme +nt plan. + +2 Northwestern Mutual Milwaukee, WI, USA Life Insurance: Whole Life Insurance 03/2012 + +03/2014 + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +# SOURCE NAME CITY, STATE BRIEF DESCRIPTION OF DUTIES + +1 LMI Tyson's Corner, VA Consultant (Strategic Planning) + +5. Spouse's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 T -C S&P 500 Idx-Rtmt Fund (New America) Yes $1,001 - $15,000 None (or less than +$201) + +2 T -C Intl Eq Idx-Rtmt Fund (New America) Yes $15,001 - $50,000 None (or less than +$201) + +3 Spouse's Salary (New America) N/A Salary + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 PNC Savings N/A $15,001 - $50,000 None (or less $201) than +2 amazon.com inc N/A $1,001 - $15,000 None (or less $201) than +3 Cummins Inc Stock N/A $1,001 - $15,000 Dividends $201 - $1,000 +4 Alphabet Inc CL A Stock N/A $1,001 - $15,000 None (or less $201) than +5 Philip Morris Intl Inc Stock N/A $1,001 - $15,000 Dividends $201 - $1,000 +6 AT+T INC Stock N/A $1,001 - $15,000 None (or less $201) than +7 Exxon Mobil Corp N/A $1,001 - $15,000 Dividends $201 - $1,000 +8 Powershares QQQ ETF (QQQ) Yes $1,001 - $15,000 None (or less $201) than +9 Powershares QQQ ETF (QQQ) Yes $1,001 - $15,000 None (or less than + +$201) +10 Proshares Ultra S+P 500 2X ETF (SSO) Yes $15,001 - $50,000 None (or less $201) than +11 Sector Technology Select Sector (SPDR) Yes $1,001 - $15,000 None (or less $201) than +12 Sector Technology Select Sector (SPDR) Yes $1,001 - $15,000 None (or less $201) than +13 AF Wash Mutual Inv R4 Fund (New America) Yes $1,001 - $15,000 None (or less $201) than +14 Columbia Md Cp Indx Fd A Fund (New America) Yes $15,001 - $50,000 None (or less $201) than +15 Columbia Small Cap Idx A Fund (New America) Yes $1,001 - $15,000 None (or less $201) than +16 Cambiar Intl Equity Inv (New America) Yes $1,001 - $15,000 None (or less $201) than +17 Cambiar Intl Equity Inv Fund (New America) Yes $1,001 - $15,000 None (or less $201) than +18 Intl Business Machines Corp (IBM) N/A $15,001 - $50,000 Dividends $201 - $1,000 +19 Reynolds American Inc (RAI) N/A $1,001 - $15,000 Dividends $201 - $1,000 +20 Alibaba GRP Hldgs (BABAS) N/A $1,001 - $15,000 None (or less $201) than +21 American Express Co (AXP) N/A $1,001 - $15,000 None (or less than + +$201) + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1636, ""end"": 1693}, {""label"": ""Description"", ""start"": 1697, ""end"": 1700}, {""label"": ""Description"", ""start"": 1723, ""end"": 1743}, {""label"": ""Description"", ""start"": 2482, ""end"": 2522}, {""label"": ""Description"", ""start"": 2572, ""end"": 2612}, {""label"": ""Description"", ""start"": 2663, ""end"": 2692}, {""label"": ""Description"", ""start"": 2820, ""end"": 2831}, {""label"": ""Description"", ""start"": 2916, ""end"": 2930}, {""label"": ""Description"", ""start"": 3012, ""end"": 3029}, {""label"": ""Description"", ""start"": 3096, ""end"": 3119}, {""label"": ""Description"", ""start"": 3192, ""end"": 3220}, {""label"": ""Description"", ""start"": 3276, ""end"": 3290}, {""label"": ""Description"", ""start"": 3372, ""end"": 3388}, {""label"": ""Description"", ""start"": 3456, ""end"": 3481}, {""label"": ""Description"", ""start"": 3552, ""end"": 3577}, {""label"": ""Description"", ""start"": 3656, ""end"": 3692}, {""label"": ""Description"", ""start"": 3767, ""end"": 3805}, {""label"": ""Description"", ""start"": 3878, ""end"": 3916}, {""label"": ""Description"", ""start"": 3989, ""end"": 4029}, {""label"": ""Description"", ""start"": 4100, ""end"": 4143}, {""label"": ""Description"", ""start"": 4211, ""end"": 4254}, {""label"": ""Description"", ""start"": 4322, ""end"": 4359}, {""label"": ""Description"", ""start"": 4433, ""end"": 4475}, {""label"": ""Description"", ""start"": 4544, ""end"": 4577}, {""label"": ""Description"", ""start"": 4643, ""end"": 4670}, {""label"": ""Description"", ""start"": 4742, ""end"": 4767}, {""label"": ""Description"", ""start"": 4853, ""end"": 4878}, {""label"": ""Amount"", ""start"": 1712, ""end"": 1719}, {""label"": ""Amount"", ""start"": 1754, ""end"": 1759}, {""label"": ""Amount"", ""start"": 1783, ""end"": 1807}, {""label"": ""Amount"", ""start"": 2544, ""end"": 2568}, {""label"": ""Amount"", ""start"": 2635, ""end"": 2659}, {""label"": ""Amount"", ""start"": 2887, ""end"": 2912}, {""label"": ""Amount"", ""start"": 2983, ""end"": 3008}, {""label"": ""Amount"", ""start"": 3079, ""end"": 3092}, {""label"": ""Amount"", ""start"": 3163, ""end"": 3188}, {""label"": ""Amount"", ""start"": 3259, ""end"": 3272}, {""label"": ""Amount"", ""start"": 3343, ""end"": 3368}, {""label"": ""Amount"", ""start"": 3439, ""end"": 3452}, {""label"": ""Amount"", ""start"": 3523, ""end"": 3548}, {""label"": ""Amount"", ""start"": 3619, ""end"": 3651}, {""label"": ""Amount"", ""start"": 3737, ""end"": 3762}, {""label"": ""Amount"", ""start"": 3848, ""end"": 3873}, {""label"": ""Amount"", ""start"": 3959, ""end"": 3984}, {""label"": ""Amount"", ""start"": 4070, ""end"": 4095}, {""label"": ""Amount"", ""start"": 4181, ""end"": 4206}, {""label"": ""Amount"", ""start"": 4292, ""end"": 4317}, {""label"": ""Amount"", ""start"": 4403, ""end"": 4428}, {""label"": ""Amount"", ""start"": 4514, ""end"": 4539}, {""label"": ""Amount"", ""start"": 4625, ""end"": 4638}, {""label"": ""Amount"", ""start"": 4724, ""end"": 4737}, {""label"": ""Amount"", ""start"": 4823, ""end"": 4848}, {""label"": ""Amount"", ""start"": 4934, ""end"": 4966}, {""label"": ""Value"", ""start"": 1765, ""end"": 1782}, {""label"": ""Value"", ""start"": 2527, ""end"": 2543}, {""label"": ""Value"", ""start"": 2617, ""end"": 2634}, {""label"": ""Value"", ""start"": 2855, ""end"": 2872}, {""label"": ""Value"", ""start"": 2951, ""end"": 2967}, {""label"": ""Value"", ""start"": 3047, ""end"": 3063}, {""label"": ""Value"", ""start"": 3131, ""end"": 3147}, {""label"": ""Value"", ""start"": 3227, ""end"": 3243}, {""label"": ""Value"", ""start"": 3311, ""end"": 3327}, {""label"": ""Value"", ""start"": 3407, ""end"": 3423}, {""label"": ""Value"", ""start"": 3491, ""end"": 3507}, {""label"": ""Value"", ""start"": 3587, ""end"": 3603}, {""label"": ""Value"", ""start"": 3706, ""end"": 3724}, {""label"": ""Value"", ""start"": 3817, ""end"": 3835}, {""label"": ""Value"", ""start"": 3928, ""end"": 3946}, {""label"": ""Value"", ""start"": 4039, ""end"": 4057}, {""label"": ""Value"", ""start"": 4150, ""end"": 4168}, {""label"": ""Value"", ""start"": 4261, ""end"": 4279}, {""label"": ""Value"", ""start"": 4372, ""end"": 4390}, {""label"": ""Value"", ""start"": 4483, ""end"": 4501}, {""label"": ""Value"", ""start"": 4594, ""end"": 4612}, {""label"": ""Value"", ""start"": 4693, ""end"": 4711}, {""label"": ""Value"", ""start"": 4792, ""end"": 4810}, {""label"": ""Value"", ""start"": 4903, ""end"": 4921}]" +"130","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +METZGER II, PETER T. + +Special Assistant, OSD/USD (Policy), Department of Defense +Date of Appointment: 08/21/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +PETER T. METZGER II +User ID: 1B63EC8F2ADD114F +09/14/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +SCOTT F. THOMPSON +User ID: 87F0125228A7148A +11/14/2017 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +KATHRYN L. WHEELBARGER +User ID: 836852530EDFF319 +10/20/2017 + +U.S. Office of Government Ethics Certification + +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 The Matrix Operating Group Mclean, VA, USA Business Enterprise Senior Counsel 12/2013 07/2017 +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 U.S. Brokerage Money Market Account 2 - cash N/A $1,001 - $15,000 None (or less than +$201) + +2 Matrix Internation, Inc. N/A Salary $90146 + +3. Filer's Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +# SOURCE NAME CITY, STATE BRIEF DESCRIPTION OF DUTIES + +1 Matrix Internation, INC. Mclean, VA Consultant and Senior Counsel. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Traditional IRA Yes $50,001 - $100,000 None $201) (or less than +1.1 AQR STYLE PREMIA ALTERNATIVE FD CL R6 Yes $1,001 - $15,000 None $201) (or less than +1.2 AQR SMALL CAP MULTI STYLE FD CL R6 Yes $1,001 - $15,000 None $201) (or less than +1.3 AMERICAN BEACON INTL EQUITY Y CLASS Yes $1,001 - $15,000 None $201) (or less than +1.4 AMERICAN BEACON AHL MNGD FUTRS STRT INST Yes $1,001 - $15,000 None $201) (or less than +1.5 BAIRD CORE PLUS BOND INSTITUTIONAL N/A $1,001 - $15,000 None $201) (or less than +1.6 DELAWARE VALUE FUND INSTITUTIONAL Yes $15,001 - $50,000 None $201) (or less than +1.7 HARDING LOEVNER INTL EQUITY PORT INSTL N/A $1,001 - $15,000 None $201) (or less than +1.8 HARTFORD SCHRODERS EMRG MRKTS EQTY CL I Yes $1,001 - $15,000 None $201) (or less than +1.9 LAZARD EMERGING MRKTS EQ BLEND INSTL N/A $1,001 - $15,000 None $201) (or less than +1.10 LAZARD INTL STRATEGY EQUITY PORT INTL CL N/A $1,001 - $15,000 None $201) (or less than +1.11 MFS GROWTH FUND CLASS I N/A $15,001 - $50,000 None $201) (or less than +1.12 USAA MANAGED ALLOCATION FD RETAIL Yes $1,001 - $15,000 None (or less than + +$201) +1.13 USAA SHORT TERM BOND FD INSTL Yes $1,001 - $15,000 None $201) (or less than +1.14 USAA INCOME FUND INSTL N/A $1,001 - $15,000 None $201) (or less than +1.15 VICTORY SYCAMORE ESTABLISHED VALUE I Yes $1,001 - $15,000 None $201) (or less than +1.16 VOYA INTERMEDIATE BOND CLASS W Yes $1,001 - $15,000 None $201) (or less than +2 Roth IRA Yes $50,001 - $100,000 None $201) (or less than +2.1 Apple Inc N/A $1,001 - $15,000 None $201) (or less than +2.2 Berkshire Hathaway Inc N/A $1,001 - $15,000 None $201) (or less than +2.3 USAA CORNERSTONE Fund N/A $1,001 - $15,000 None $201) (or less than +2.4 USAA CAPITAL GROWTH Fund N/A $1,001 - $15,000 None $201) (or less than +2.5 USAA S & P 500 INDEX FD N/A $15,001 - $50,000 None $201) (or less than +3 U.S. Domestic Bank Account #1 - cash N/A $1,001 - $15,000 None $201) (or less than +4 U.S. Domesetic Bank Account # 2 - Cash N/A $1,001 - $15,000 None (or less than + +$201) + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +# CREDITOR NAME TYPE OF LIABILITY AMOUNT + +YEAR +INCURRED + +INTEREST +RATE TERM + +1 ACS Education Loan $15,001 - +$50,000 + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +2006 4.21% 20yrs + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1397, ""end"": 1441}, {""label"": ""Description"", ""start"": 1491, ""end"": 1515}, {""label"": ""Description"", ""start"": 2054, ""end"": 2069}, {""label"": ""Description"", ""start"": 2160, ""end"": 2197}, {""label"": ""Description"", ""start"": 2266, ""end"": 2300}, {""label"": ""Description"", ""start"": 2372, ""end"": 2407}, {""label"": ""Description"", ""start"": 2478, ""end"": 2518}, {""label"": ""Description"", ""start"": 2584, ""end"": 2618}, {""label"": ""Description"", ""start"": 2690, ""end"": 2723}, {""label"": ""Description"", ""start"": 2796, ""end"": 2834}, {""label"": ""Description"", ""start"": 2902, ""end"": 2941}, {""label"": ""Description"", ""start"": 3008, ""end"": 3044}, {""label"": ""Description"", ""start"": 3114, ""end"": 3154}, {""label"": ""Description"", ""start"": 3220, ""end"": 3243}, {""label"": ""Description"", ""start"": 3326, ""end"": 3359}, {""label"": ""Description"", ""start"": 3439, ""end"": 3468}, {""label"": ""Description"", ""start"": 3539, ""end"": 3561}, {""label"": ""Description"", ""start"": 3639, ""end"": 3675}, {""label"": ""Description"", ""start"": 3739, ""end"": 3769}, {""label"": ""Description"", ""start"": 3839, ""end"": 3847}, {""label"": ""Description"", ""start"": 3939, ""end"": 3948}, {""label"": ""Description"", ""start"": 4039, ""end"": 4061}, {""label"": ""Description"", ""start"": 4139, ""end"": 4160}, {""label"": ""Description"", ""start"": 4239, ""end"": 4263}, {""label"": ""Description"", ""start"": 4339, ""end"": 4362}, {""label"": ""Description"", ""start"": 4439, ""end"": 4475}, {""label"": ""Description"", ""start"": 4539, ""end"": 4577}, {""label"": ""Value"", ""start"": 1446, ""end"": 1462}, {""label"": ""Value"", ""start"": 2101, ""end"": 2120}, {""label"": ""Value"", ""start"": 2207, ""end"": 2225}, {""label"": ""Value"", ""start"": 2313, ""end"": 2331}, {""label"": ""Value"", ""start"": 2419, ""end"": 2437}, {""label"": ""Value"", ""start"": 2525, ""end"": 2543}, {""label"": ""Value"", ""start"": 2631, ""end"": 2649}, {""label"": ""Value"", ""start"": 2737, ""end"": 2755}, {""label"": ""Value"", ""start"": 2843, ""end"": 2861}, {""label"": ""Value"", ""start"": 2949, ""end"": 2967}, {""label"": ""Value"", ""start"": 3055, ""end"": 3073}, {""label"": ""Value"", ""start"": 3161, ""end"": 3179}, {""label"": ""Value"", ""start"": 3267, ""end"": 3285}, {""label"": ""Value"", ""start"": 3373, ""end"": 3391}, {""label"": ""Value"", ""start"": 3484, ""end"": 3502}, {""label"": ""Value"", ""start"": 3584, ""end"": 3602}, {""label"": ""Value"", ""start"": 3684, ""end"": 3702}, {""label"": ""Value"", ""start"": 3784, ""end"": 3802}, {""label"": ""Value"", ""start"": 3884, ""end"": 3903}, {""label"": ""Value"", ""start"": 3984, ""end"": 4002}, {""label"": ""Value"", ""start"": 4084, ""end"": 4102}, {""label"": ""Value"", ""start"": 4184, ""end"": 4202}, {""label"": ""Value"", ""start"": 4284, ""end"": 4302}, {""label"": ""Value"", ""start"": 4384, ""end"": 4402}, {""label"": ""Value"", ""start"": 4484, ""end"": 4502}, {""label"": ""Value"", ""start"": 4584, ""end"": 4602}, {""label"": ""Amount"", ""start"": 1463, ""end"": 1487}, {""label"": ""Amount"", ""start"": 1527, ""end"": 1533}, {""label"": ""Amount"", ""start"": 2123, ""end"": 2153}, {""label"": ""Amount"", ""start"": 2229, ""end"": 2259}, {""label"": ""Amount"", ""start"": 2335, ""end"": 2365}, {""label"": ""Amount"", ""start"": 2441, ""end"": 2471}, {""label"": ""Amount"", ""start"": 2547, ""end"": 2577}, {""label"": ""Amount"", ""start"": 2653, ""end"": 2683}, {""label"": ""Amount"", ""start"": 2759, ""end"": 2789}, {""label"": ""Amount"", ""start"": 2865, ""end"": 2895}, {""label"": ""Amount"", ""start"": 2971, ""end"": 3001}, {""label"": ""Amount"", ""start"": 3077, ""end"": 3107}, {""label"": ""Amount"", ""start"": 3183, ""end"": 3213}, {""label"": ""Amount"", ""start"": 3289, ""end"": 3319}, {""label"": ""Amount"", ""start"": 3395, ""end"": 3432}, {""label"": ""Amount"", ""start"": 3505, ""end"": 3532}, {""label"": ""Amount"", ""start"": 3605, ""end"": 3632}, {""label"": ""Amount"", ""start"": 3705, ""end"": 3732}, {""label"": ""Amount"", ""start"": 3805, ""end"": 3832}, {""label"": ""Amount"", ""start"": 3905, ""end"": 3932}, {""label"": ""Amount"", ""start"": 4005, ""end"": 4032}, {""label"": ""Amount"", ""start"": 4105, ""end"": 4132}, {""label"": ""Amount"", ""start"": 4205, ""end"": 4232}, {""label"": ""Amount"", ""start"": 4305, ""end"": 4332}, {""label"": ""Amount"", ""start"": 4405, ""end"": 4432}, {""label"": ""Amount"", ""start"": 4505, ""end"": 4532}, {""label"": ""Amount"", ""start"": 4605, ""end"": 4639}]" +"132","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +NARVAEZ-WOODS, DOROTHY + +SPECIAL ASSISTANT TO THE ASD(HA), OSD, DEPARTMENT OF DEFENSE +Date of Appointment: 07/17/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +DOROTHY NARVAEZ-WOODS +User ID: 32D2C499A3726B9D +11/21/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +JEFFREY A. GREEN +User ID: 06EEE68944867E81 +12/07/2017 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +DAVID J. SMITH +User ID: 8FF5EE64C607FD25 +11/30/2017 + +U.S. Office of Government Ethics Certification + +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 D&KW Holdings LLC Las Vegas, NV, USA Business Enterprise Trustee 06/2015 Present +2. Filer's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +3. Filer's Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +This report has no reported Compensation Exceeding $5,000 + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Family Irrevocable trust Yes None (or less than $1,001) None (or less than $201) +1.1 CPEIX Catalyst Dynamic Alpha CL I Yes $1,001 - $15,000 Dividends $1,001 - $2,500 +1.2 FELIX FIDELITY ADVISOR SEMICONDUCTORS CL I Yes $1,001 - $15,000 Dividends $5,001 - $15,000 +1.3 FBTIX FIDELITY ADVISOR BIOTECHNOLOGY CL I Yes $1,001 - $15,000 Dividends $2,501 - $5,000 +1.4 FATIX FIDELITY ADVISOR TECHNOLOGY CL I R Yes $1,001 - $15,000 Dividends $2,501 - $5,000 +1.5 FEP FIRST TRUST EUROPE ALPHADEX ETF Yes $1,001 - $15,000 Dividends $201 - $1,000 +1.6 BOTZ GLOBAL X ROBOTICS & ARTIFICIAL INTELLIGENCE ETF Yes $1,001 - $15,000 Dividends $2,501 - $5,000 +1.7 OOSYX OPPENHEIMER SENIOR FLOATING RATE CLY Yes None (or less than $1,001) Dividends $201 - $1,000 +1.8 PONPX PIMCO INCOME CL P R Yes None (or less than $1,001) Dividends $201 - $1,000 +1.9 PDVPX PIMCO DIVERSIFIED INCOME CL P R Yes None (or less than $1,001) Dividends $201 - $1,000 +1.10 PFL PIMCO INCOME STRATEGY FUND Yes $1,001 - $15,000 Dividends $1,001 - $2,500 +1.11 RYT RYDEX GUGGENHEIM S&P 500 EQUAL WEIGHT TECHNOLOGY ETF Yes None (or less than $1,001) Dividends $201 - $1,000 +2 IRA Yes None (or less than $1,001) None (or less than $201) +2.1 MTCIX MFS Technology CLI Yes $1,001 - $15,000 Dividends $201 - $1,000 +2.2 BOTZ GLOBAL X ROBOTICS & ARTIFICIAL INTELLIGENCE ETF Yes None (or less than $1,001) Dividends $201 - $1,000 +2.3 JAGLX JANUS HENDERSON GLOBAL LIFE Yes None (or less than $1,001) Dividends $201 - $1,000 +2.4 OGIYX OPPENHEIMER GLOBAL OPPTYS CL Y R Yes None (or less than $1,001) Dividends $201 - $1,000 +2.5 ODVYX OPPENHEIMER DEVELOPING MARKETS CL Y R Yes None (or less than $1,001) Dividends $201 - $1,000 +2.6 PEPFX PIMCO RAE FUNDAMENTAL EMERGING MARKETS CL P R Yes None (or less than Dividends $201 - $1,000 + +$1,001) +3 Custodial account Yes None (or less than +$1,001) + +None (or less than +$201) + +3.1 FATIX FIDELITY ADVISOR TECHNOLOGY CL I R Yes $1,001 - $15,000 Dividends $201 - $1,000 + +4 Residential Rental Property, Imperial Beach CA N/A $250,001 - $500,000 Rent and Royalties $1,001 - $2,500 + +5 Personal Loan to Rea Middleton N/A $50,001 - $100,000 None (or less than +$201) + +6 US Domestic Bank Checking, Savings Accounts N/A $1,001 - $15,000 None (or less than +$201) + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +# CREDITOR NAME TYPE OF LIABILITY AMOUNT YEAR INCURRED INTEREST RATE TERM +1 Neiman Marcus Credit Card/Revolving Charge Account $10,001 - 2016 21.0% monthly + $15,000 +2 Tower FCU HELOC $50,001 - 2016 3.9% Monthly + $100,000 +3 USAA Credit Card/Revolving Charge Account $15,001 - 2015 8.75% monthly + $50,000 +4 USAA Loan $15,001 - 2016 4.8% monthly + $50,000 + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1851, ""end"": 1875}, {""label"": ""Description"", ""start"": 1986, ""end"": 2019}, {""label"": ""Description"", ""start"": 2112, ""end"": 2154}, {""label"": ""Description"", ""start"": 2239, ""end"": 2280}, {""label"": ""Description"", ""start"": 2365, ""end"": 2405}, {""label"": ""Description"", ""start"": 2491, ""end"": 2526}, {""label"": ""Description"", ""start"": 2615, ""end"": 2667}, {""label"": ""Description"", ""start"": 2741, ""end"": 2783}, {""label"": ""Description"", ""start"": 2865, ""end"": 2890}, {""label"": ""Description"", ""start"": 2989, ""end"": 3026}, {""label"": ""Description"", ""start"": 3113, ""end"": 3143}, {""label"": ""Description"", ""start"": 3239, ""end"": 3295}, {""label"": ""Description"", ""start"": 3363, ""end"": 3366}, {""label"": ""Description"", ""start"": 3498, ""end"": 3522}, {""label"": ""Description"", ""start"": 3622, ""end"": 3674}, {""label"": ""Description"", ""start"": 3746, ""end"": 3779}, {""label"": ""Description"", ""start"": 3870, ""end"": 3908}, {""label"": ""Description"", ""start"": 3994, ""end"": 4037}, {""label"": ""Description"", ""start"": 4118, ""end"": 4169}, {""label"": ""Description"", ""start"": 4247, ""end"": 4264}, {""label"": ""Description"", ""start"": 4327, ""end"": 4367}, {""label"": ""Description"", ""start"": 4416, ""end"": 4462}, {""label"": ""Description"", ""start"": 4525, ""end"": 4555}, {""label"": ""Description"", ""start"": 4607, ""end"": 4650}, {""label"": ""Value"", ""start"": 1914, ""end"": 1940}, {""label"": ""Value"", ""start"": 2049, ""end"": 2065}, {""label"": ""Value"", ""start"": 2175, ""end"": 2191}, {""label"": ""Value"", ""start"": 2302, ""end"": 2318}, {""label"": ""Value"", ""start"": 2428, ""end"": 2444}, {""label"": ""Value"", ""start"": 2554, ""end"": 2570}, {""label"": ""Value"", ""start"": 2678, ""end"": 2694}, {""label"": ""Value"", ""start"": 2804, ""end"": 2830}, {""label"": ""Value"", ""start"": 2928, ""end"": 2954}, {""label"": ""Value"", ""start"": 3052, ""end"": 3078}, {""label"": ""Value"", ""start"": 3176, ""end"": 3192}, {""label"": ""Value"", ""start"": 3302, ""end"": 3328}, {""label"": ""Value"", ""start"": 3426, ""end"": 3452}, {""label"": ""Value"", ""start"": 3561, ""end"": 3577}, {""label"": ""Value"", ""start"": 3685, ""end"": 3711}, {""label"": ""Value"", ""start"": 3809, ""end"": 3835}, {""label"": ""Value"", ""start"": 3933, ""end"": 3959}, {""label"": ""Value"", ""start"": 4057, ""end"": 4083}, {""label"": ""Value"", ""start"": 4181, ""end"": 4199}, {""label"": ""Value"", ""start"": 4237, ""end"": 4244}, {""label"": ""Value"", ""start"": 4269, ""end"": 4295}, {""label"": ""Value"", ""start"": 4372, ""end"": 4388}, {""label"": ""Value"", ""start"": 4467, ""end"": 4486}, {""label"": ""Value"", ""start"": 4560, ""end"": 4578}, {""label"": ""Value"", ""start"": 4655, ""end"": 4671}, {""label"": ""Amount"", ""start"": 1955, ""end"": 1979}, {""label"": ""Amount"", ""start"": 2090, ""end"": 2105}, {""label"": ""Amount"", ""start"": 2216, ""end"": 2232}, {""label"": ""Amount"", ""start"": 2343, ""end"": 2358}, {""label"": ""Amount"", ""start"": 2469, ""end"": 2484}, {""label"": ""Amount"", ""start"": 2595, ""end"": 2608}, {""label"": ""Amount"", ""start"": 2719, ""end"": 2734}, {""label"": ""Amount"", ""start"": 2845, ""end"": 2858}, {""label"": ""Amount"", ""start"": 2969, ""end"": 2982}, {""label"": ""Amount"", ""start"": 3093, ""end"": 3106}, {""label"": ""Amount"", ""start"": 3217, ""end"": 3232}, {""label"": ""Amount"", ""start"": 3343, ""end"": 3356}, {""label"": ""Amount"", ""start"": 3467, ""end"": 3491}, {""label"": ""Amount"", ""start"": 3602, ""end"": 3615}, {""label"": ""Amount"", ""start"": 3726, ""end"": 3739}, {""label"": ""Amount"", ""start"": 3850, ""end"": 3863}, {""label"": ""Amount"", ""start"": 3974, ""end"": 3987}, {""label"": ""Amount"", ""start"": 4098, ""end"": 4111}, {""label"": ""Amount"", ""start"": 4222, ""end"": 4235}, {""label"": ""Amount"", ""start"": 4297, ""end"": 4321}, {""label"": ""Amount"", ""start"": 4399, ""end"": 4412}, {""label"": ""Amount"", ""start"": 4506, ""end"": 4521}, {""label"": ""Amount"", ""start"": 4579, ""end"": 4603}, {""label"": ""Amount"", ""start"": 4672, ""end"": 4696}]" +"133","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +TURENNE, WILLIAM J. + +Special Assistant, Travel Operations, Office of the Secretary of Defense, OSD +Date of Appointment: 01/26/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +WILLIAM J. TURENNE +User ID: B87749B885602832 +04/14/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +Other review conducted by + +U.S. Office of Government Ethics Certification + +1. Filer Positions Held outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 58th Presidential Inaugural Committee Washington, DC, USA Inaugural Committee VIP Deating Lead 12/2016 01/2017 + +2 Concerned Veterans for America Arlington, VA, USA Non -Profit Organiza +tion + +Director 06/2014 06/2015 + +3 Donald J. Trump for President New York, NY, USA Presidential Campai +gn + +4 Turenne & Company Irvington, VA, USA Business Enterprise Employee 07/2015 07/2016 + +Advance Lead 07/2016 11/2016 + +2. Filer's Employment Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 58th Presidential Inaugural Committee N/A Salary $10287 + +2 Donald J. Trump for President N/A Income from personal +services + +$21800 + +3 Faiza Akhtar, Inc. N/A Income from personal +services + +$600 +4 Turenne & Company N/A Income from personal +services + +$5581 + +3. Filer Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +# SOURCE NAME CITY, STATE BRIEF DESCRIPTION OF DUTIES +1 58th Presidential Inaugural Committee Washington, DC Worked on the planning, management and exec ution of events surrounding the 2017 Inaugu ration. +2 Concerned Veterans for America Arlington, VA Served as Director of Communications until June, 2015. +3 Donald J. Trump for President New York, NY Served as a 1099 contracted consultant Adva nce Lead on the presidential campaign. +4 Turenne & Company Irvington, VA Employee of a family -owned communications a + +nd business development advisory firm. + +5. Spouse's Employment Assets and Income + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Individual Retirement Account - Schwab No None (or $1,001) less than None $201) (or less than +1.1 Free Market Fixed INCM (FMFIX) Yes $15,001 - $50,000 None $201) (or less than +1.2 Free Market INTL Eqty FD (FMNEX) Yes $1,001 - $15,000 None $201) (or less than +1.3 Free Market US EQTY FD (FMUEX) Yes $100,001 - $250,000 None $201) (or less than +1.4 Schwab Money Market (SWMXX) No $1,001 - $15,000 None $201) (or less than +2 US Domestic Bank Institution N/A $1,001 - $15,000 None $201) (or less than +3 VA 529 Tuition Fund - DC 1 No None (or $1,001) less than None $201) (or less than +3.1 American VA 529 Capital Income Builder Fund Class A -CIRAX) ( Yes None (or $1,001) less than None $201) (or less than +3.2 American VA 529 Euro Pacific Growth Fund Class A (CEU Yes AX) None (or $1,001) less than None $201) (or less than +3.3 American VA 529 Growth Fund of America Class A (CGFAX Yes ) None (or $1,001) less than None $201) (or less than +4 VA 529 Tuition Fund - DC 2 No None (or $1,001) less than None $201) (or less than +4.1 American VA 529 Captial Income Builder Fund Class A ( Yes CIRAX) None (or $1,001) less than None $201) (or less than +4.2 American VA 529 euro Pacific Growth Fund Class A (CEU +AX) + +Yes None (or less than +$1,001) + +None (or less than +$201) + +4.3 American VA 529 Growth Fund of America Class A (CGFAX +) + +Yes None (or less than +$1,001) + +None (or less than +$201) + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside the United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets and Income + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets and Income + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1533, ""end"": 1570}, {""label"": ""Description"", ""start"": 1592, ""end"": 1621}, {""label"": ""Description"", ""start"": 1667, ""end"": 1685}, {""label"": ""Description"", ""start"": 2832, ""end"": 2870}, {""label"": ""Description"", ""start"": 2975, ""end"": 3005}, {""label"": ""Description"", ""start"": 3118, ""end"": 3150}, {""label"": ""Description"", ""start"": 3261, ""end"": 3291}, {""label"": ""Description"", ""start"": 3404, ""end"": 3431}, {""label"": ""Description"", ""start"": 3547, ""end"": 3575}, {""label"": ""Description"", ""start"": 3690, ""end"": 3716}, {""label"": ""Description"", ""start"": 3833, ""end"": 3900}, {""label"": ""Description"", ""start"": 3976, ""end"": 4029}, {""label"": ""Description"", ""start"": 4034, ""end"": 4037}, {""label"": ""Description"", ""start"": 4119, ""end"": 4172}, {""label"": ""Description"", ""start"": 4177, ""end"": 4178}, {""label"": ""Description"", ""start"": 4262, ""end"": 4288}, {""label"": ""Description"", ""start"": 4405, ""end"": 4458}, {""label"": ""Description"", ""start"": 4463, ""end"": 4469}, {""label"": ""Description"", ""start"": 4547, ""end"": 4609}, {""label"": ""Description"", ""start"": 4668, ""end"": 4728}, {""label"": ""Amount"", ""start"": 1582, ""end"": 1588}, {""label"": ""Amount"", ""start"": 1657, ""end"": 1663}, {""label"": ""Amount"", ""start"": 1721, ""end"": 1725}, {""label"": ""Amount"", ""start"": 2939, ""end"": 2969}, {""label"": ""Amount"", ""start"": 3082, ""end"": 3112}, {""label"": ""Amount"", ""start"": 3225, ""end"": 3255}, {""label"": ""Amount"", ""start"": 3368, ""end"": 3398}, {""label"": ""Amount"", ""start"": 3511, ""end"": 3541}, {""label"": ""Amount"", ""start"": 3654, ""end"": 3684}, {""label"": ""Amount"", ""start"": 3797, ""end"": 3827}, {""label"": ""Amount"", ""start"": 3940, ""end"": 3970}, {""label"": ""Amount"", ""start"": 4083, ""end"": 4113}, {""label"": ""Amount"", ""start"": 4226, ""end"": 4256}, {""label"": ""Amount"", ""start"": 4369, ""end"": 4399}, {""label"": ""Amount"", ""start"": 4512, ""end"": 4542}, {""label"": ""Amount"", ""start"": 4638, ""end"": 4662}, {""label"": ""Amount"", ""start"": 4757, ""end"": 4781}, {""label"": ""Value"", ""start"": 2905, ""end"": 2935}, {""label"": ""Value"", ""start"": 3048, ""end"": 3078}, {""label"": ""Value"", ""start"": 3191, ""end"": 3207}, {""label"": ""Value"", ""start"": 3334, ""end"": 3353}, {""label"": ""Value"", ""start"": 3477, ""end"": 3493}, {""label"": ""Value"", ""start"": 3620, ""end"": 3636}, {""label"": ""Value"", ""start"": 3763, ""end"": 3793}, {""label"": ""Value"", ""start"": 3906, ""end"": 3936}, {""label"": ""Value"", ""start"": 4049, ""end"": 4079}, {""label"": ""Value"", ""start"": 4192, ""end"": 4222}, {""label"": ""Value"", ""start"": 4335, ""end"": 4365}, {""label"": ""Value"", ""start"": 4478, ""end"": 4508}, {""label"": ""Value"", ""start"": 4610, ""end"": 4636}, {""label"": ""Value"", ""start"": 4729, ""end"": 4755}]" +"139","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel +Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +Hambleton, Ryan M +Deputy Assistant Secretary, Department of the Interior +Date of Appointment: 04/15/2018 + +Other Federal Government Positions Held During the Preceding 12 Months: + +U.S. House of Representatives Committee on Oversight and Government Reform: (01/03/2011 - 04/14/2018) + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +/s/ Ryan Hambleton [electronically signed by Ryan Hambleton on 2018-05-16 18:24:29 in FDonline] + +Agency Ethics Official's Opinion - On the basis of information contained in this report, I conclude that the filer is in compliance with applicable laws and regulations +(subject to any comments below) + +/s/ Tia Barner, Ethics Counselor [electronically signed by Tia Barner on 2018-07-17 14:04:37 in FDonline] + +Other review conducted by: + +U.S. Office of Government Ethics Certification +1. Filer's Positions Held Outside United States Government + +None + +2. Filer's Employment Assets and Income + +None + +3. Filer's Employment Agreements and Arrangements + +None + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +None + +5. Spouse's Employment Assets and Income +None + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 (Cash Deposit/Savings) Ally Bank Sandy, UT, US Savings and Checking N/A $50,001 - $100,000 Interest $201 - $1,000 + +2 (Mutual Fund) CAIBX Capital Income Builder Yes $1,001 - $15,000 None (or less than $201) + +3 (Mutual Fund) CWGIX Capital World Growth and Income Fund Yes $1,001 - $15,000 $201 - $1,000 + +4 (Mutual Fund) NEWFX New World Fund Yes $1,001 - $15,000 $201 - $1,000 + +5 (Mutual Fund) SMCWX SMALLCAP World Fund Yes $1,001 - $15,000 $201 - $1,000 + +7. Transactions + +(N/A) - Not required for this type of report + +8. Liabilities + +None +9. Gifts and Reimbursements + +(N/A) - Not required for this type of report +Endnotes + +PART # ENDNOTE +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable +even if the filer did not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) +positions solely of an honorary nature; (3) positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; +and (5) passive investment interests as a limited partner or non -managing member of a limited liability company. + +2. Filer's Employment Assets and Income + +Part 2 discloses the following: + +Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, +honoraria, scholarships, and prizes) +Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or +(2) produced more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their +underlying holdings as appropriate, deferred compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, +employment, or other income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount +of income is $0 - $200 or if the asset qualifies as an excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), +such as the following: + +Future employment +Leave of absence +Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current +employer) +Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan +Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share +of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting +period. The filer discloses payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the +source made its payment to the filer's employer and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the +services for which the client is paying. + +5. Spouse's Employment Assets and Income +Part 5 discloses the following: + +Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and +partnership share) +Sources of honoraria for the filer's spouse greater than $200 during the reporting period +Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater +than $1,000 or (2) produced more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans +/accounts and their underlying holdings as appropriate, deferred compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, +employment, or other income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of +income is $0 - $200 or if the asset qualifies as an excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding +honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment +income during the reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and +dependent children. This section does not include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) +income or retirement benefits associated with United States Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money +market accounts) at a single financial institution with a value of $5,000 or less (unless more than $200 of income was produced). Additional exceptions apply. Note: The +type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child +during reporting period. This section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., +checking, savings, CDs, money market accounts) and money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings +Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the +following types of liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, +household furniture, or appliances, unless the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the +outstanding liability did not exceed $10,000 at the end of the reporting period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not +include the following items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local +governments; (3) bequests and other forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) +gifts of hospitality (food, lodging, entertainment) at the donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children +totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act +of 2012 (Pub. L. 112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The +primary use of the information on this report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may +also be disclosed upon request to any requesting person in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect +applications for public access of your own form upon request. Additional disclosures of the information on this report may be made: (1) to any requesting person, subject +to the limitation contained in section 208(d)(1) of title 18, any determination granting an exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a +Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential violations of law or regulation; (3) to another Federal +agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with a judge -issued subpoena; (4) to a +source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records Administration or +the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a +party to litigation or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new +office, department or agency when an employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in +response to an inquiry made on behalf of an individual who is the subject of the record; (10) to contractors and other non -Government employees working on a contract, +service or assignment for the Federal Government when necessary to accomplish a function related to an OGE Government -wide system of records; and (11) on the +OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an individual nominated by the President to a position requiring +Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and +completing the form. Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, +to the Program Counsel, U.S. Office of Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information +unless it displays a currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1492, ""end"": 1559}, {""label"": ""Description"", ""start"": 1609, ""end"": 1651}, {""label"": ""Description"", ""start"": 1701, ""end"": 1757}, {""label"": ""Description"", ""start"": 1796, ""end"": 1830}, {""label"": ""Description"", ""start"": 1869, ""end"": 1908}, {""label"": ""Value"", ""start"": 1564, ""end"": 1582}, {""label"": ""Value"", ""start"": 1656, ""end"": 1672}, {""label"": ""Value"", ""start"": 1762, ""end"": 1778}, {""label"": ""Value"", ""start"": 1835, ""end"": 1851}, {""label"": ""Value"", ""start"": 1913, ""end"": 1929}, {""label"": ""Amount"", ""start"": 1592, ""end"": 1605}, {""label"": ""Amount"", ""start"": 1673, ""end"": 1697}, {""label"": ""Amount"", ""start"": 1779, ""end"": 1792}, {""label"": ""Amount"", ""start"": 1852, ""end"": 1865}, {""label"": ""Amount"", ""start"": 1930, ""end"": 1943}]" +"143","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +BYERS, BRADLEY A. + +Senior White House Advisor, Department of Defense, Office of the Secretary of Defense +Date of Appointment: 01/20/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +BRADLEY A. BYERS +User ID: 952D783393AB11B5 +03/31/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +Dani Irvine +User ID: 693F1B775EA98F74 +04/18/2017 + +Other review conducted by + +U.S. Office of Government Ethics Certification + +1. Filer Positions Held outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 Allegheny Technologies Inc Pittsburgh, PA, USA Business Enterprise Employee 07/2013 01/2017 + +2. Filer's Employment Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 ATI 401K - ATI Stock Fund Yes $1,001 - $15,000 None (or less than +$201) + +2 ATI 401K - Harbor Capital Appreciation Yes $50,001 - $100,000 None (or less than +$201) +3 ATI 401K - Vanguard Small Cap Index Fund Yes $15,001 - $50,000 None (or less than +$201) + +4 ATI Health Savings Account N/A $1,001 - $15,000 None (or less than +$201) + +5 ATI Defined Benefit Pension N/A None (or less than +$1,001) + +6 ATI Salary N/A Salary $223925 + +None (or less than +$201) + +3. Filer Employment Agreements and Arrangements + +EMPLOYER OR OTHER PARTY TO + +# AGREEMENT/ARRANGEMENT CITY/STATE STATUS AND TERMS DATE + +1 Allegheny Technologies Pittsburgh, PA, USA Continuing participation in Employee Benefit Plan: N +either I nor my former employer continue to make cont +ributions to this plan. + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +# SOURCE NAME CITY, STATE BRIEF DESCRIPTION OF DUTIES + +1 Allegheny Technologies Inc. Pittsburgh, PA Vice President & General Manager of ATI Flo +wform Products, LLC in Billerica, MA. + +07/2013 + +5. Spouse's Employment Assets and Income + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Roth IRA - American Funds Washington Mutual Class A - Yes AWSHX $100,001 - $250,000 Dividends $1,001 - $2,500 +2 Roth IRA - T. Rowe Price Retirement 2045 Fund - TRRKX Yes $15,001 - $50,000 Dividends $201 - $1,000 +3 Virginia 529 - American Funds College 2030 Fund AX - CTH Yes $15,001 - $50,000 Dividends $201 - $1,000 +4 Virginia 529 - American Funds College 2033 Fund AX - CTL Yes $1,001 - $15,000 None (or less than $201) +5 Allegheny Technologies Inc - ATI N/A $1,001 - $15,000 None (or less than $201) +6 Oil Index Fund - VelocityShares 3x Long Crude - UWTIF Yes $1,001 - $15,000 None (or less than $201) +7 Checking and Savings - USAA N/A $100,001 - $250,000 Interest $201 - $1,000 +8 Altria - MO N/A $15,001 - $50,000 None (or less than $201) +9 Mondelez International - MDLZ N/A $1,001 - $15,000 None (or less than $201) +10 Kraft Heinz - KHC N/A $1,001 - $15,000 None (or less than + +$201) + +7. Transactions +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside the United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets and Income + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. +5. Spouse's Employment Assets and Income + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1294, ""end"": 1319}, {""label"": ""Description"", ""start"": 1369, ""end"": 1407}, {""label"": ""Description"", ""start"": 1458, ""end"": 1498}, {""label"": ""Description"", ""start"": 1549, ""end"": 1575}, {""label"": ""Description"", ""start"": 1625, ""end"": 1652}, {""label"": ""Description"", ""start"": 1687, ""end"": 1697}, {""label"": ""Description"", ""start"": 2549, ""end"": 2602}, {""label"": ""Description"", ""start"": 2607, ""end"": 2612}, {""label"": ""Description"", ""start"": 2679, ""end"": 2749}, {""label"": ""Description"", ""start"": 2807, ""end"": 2877}, {""label"": ""Description"", ""start"": 2935, ""end"": 3005}, {""label"": ""Description"", ""start"": 3074, ""end"": 3106}, {""label"": ""Description"", ""start"": 3213, ""end"": 3283}, {""label"": ""Description"", ""start"": 3352, ""end"": 3379}, {""label"": ""Description"", ""start"": 3480, ""end"": 3491}, {""label"": ""Description"", ""start"": 3619, ""end"": 3648}, {""label"": ""Description"", ""start"": 3758, ""end"": 3775}, {""label"": ""Value"", ""start"": 1324, ""end"": 1340}, {""label"": ""Value"", ""start"": 1412, ""end"": 1430}, {""label"": ""Value"", ""start"": 1503, ""end"": 1520}, {""label"": ""Value"", ""start"": 1580, ""end"": 1596}, {""label"": ""Value"", ""start"": 1657, ""end"": 1683}, {""label"": ""Value"", ""start"": 2625, ""end"": 2644}, {""label"": ""Value"", ""start"": 2755, ""end"": 2772}, {""label"": ""Value"", ""start"": 2883, ""end"": 2900}, {""label"": ""Value"", ""start"": 3011, ""end"": 3027}, {""label"": ""Value"", ""start"": 3150, ""end"": 3166}, {""label"": ""Value"", ""start"": 3289, ""end"": 3305}, {""label"": ""Value"", ""start"": 3428, ""end"": 3447}, {""label"": ""Value"", ""start"": 3556, ""end"": 3573}, {""label"": ""Value"", ""start"": 3695, ""end"": 3711}, {""label"": ""Value"", ""start"": 3834, ""end"": 3850}, {""label"": ""Amount"", ""start"": 1341, ""end"": 1365}, {""label"": ""Amount"", ""start"": 1431, ""end"": 1455}, {""label"": ""Amount"", ""start"": 1521, ""end"": 1545}, {""label"": ""Amount"", ""start"": 1597, ""end"": 1621}, {""label"": ""Amount"", ""start"": 1709, ""end"": 1742}, {""label"": ""Amount"", ""start"": 2659, ""end"": 2674}, {""label"": ""Amount"", ""start"": 2789, ""end"": 2802}, {""label"": ""Amount"", ""start"": 2917, ""end"": 2930}, {""label"": ""Amount"", ""start"": 3045, ""end"": 3069}, {""label"": ""Amount"", ""start"": 3184, ""end"": 3208}, {""label"": ""Amount"", ""start"": 3323, ""end"": 3347}, {""label"": ""Amount"", ""start"": 3462, ""end"": 3475}, {""label"": ""Amount"", ""start"": 3590, ""end"": 3614}, {""label"": ""Amount"", ""start"": 3729, ""end"": 3753}, {""label"": ""Amount"", ""start"": 3868, ""end"": 3893}]" +"144","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +JOHNSON, JUSTIN T. + +Special Assistant, OSD, Office of the Secretary of Defense +Date of Appointment: 01/20/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +JUSTIN T. JOHNSON +User ID: C6A501D6CC9D5CC7 +04/15/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +Other review conducted by + +U.S. Office of Government Ethics Certification + +1. Filer Positions Held outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 The Heritage Foundation Washington, DC, USA Non -Profit Organiza +tion + +2. Filer's Employment Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +Employee 05/2015 01/2017 + +1 Sentinel 403b - Heritage Foundation retirement accoun +t + +N/A $1,001 - $15,000 None (or less than +$201) + +1.1 T. Rowe Price Target 2050 Yes $1,001 - $15,000 None (or less than +$201) + +2 Heritage Foundation N/A Salary $91438 + +3. Filer Employment Agreements and Arrangements +EMPLOYER OR OTHER PARTY TO + +# AGREEMENT/ARRANGEMENT CITY/STATE STATUS AND TERMS DATE + +1 The Heritage Foundation Washington, DC, USA Continuing participation in Employee Benefit Plan: I +continue to maintain a 403b with my former employer. + +Neither I nor my former employer continue to make co +ntributions. + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +# SOURCE NAME CITY, STATE BRIEF DESCRIPTION OF DUTIES + +1 The Heritage Foundation Washington, DC Senior Policy Analyst for Defense Budget + +01/2017 + +5. Spouse's Employment Assets and Income + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Congressional Federal Credit Union - Checking and Sav +ings Accounts + +2 Navy Federal Credit Union - Checking & Savings Accoun +ts + +N/A $1,001 - $15,000 None (or less than +$201) + +N/A $15,001 - $50,000 None (or less than +$201) + +3 USAA - Checking Account N/A $1,001 - $15,000 None (or less than +$201) + +4 American Funds - Roth IRA N/A $15,001 - $50,000 None (or less than +$201) + +4.1 The Growth Fund of America - A Yes $15,001 - $50,000 None (or less than +$201) + +4.2 Europacific Growth Fund - A Yes $1,001 - $15,000 None (or less than +$201) + +5 Rental payments N/A $500,001 - $1,000,000 Rent and Royalties $5,001 - $15,000 + +6 Illinois 529 plan - DC1 N/A $1,001 - $15,000 None (or less than +$201) + +7 Illinois 529 plan - DC2 N/A $1,001 - $15,000 None (or less than +$201) + +8 Illinois 529 plan - DC3 N/A $1,001 - $15,000 None (or less than +$201) + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +# CREDITOR NAME TYPE OF LIABILITY AMOUNT + +YEAR +INCURRED + +INTEREST +RATE TERM + +1 Wells Fargo Bank N.A. Mortgage, Washington, DC, USA $250,001 - +$500,000 + +2013 3.875% 30 +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside the United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets and Income + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets and Income + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1203, ""end"": 1258}, {""label"": ""Description"", ""start"": 1311, ""end"": 1336}, {""label"": ""Description"", ""start"": 1386, ""end"": 1405}, {""label"": ""Description"", ""start"": 2148, ""end"": 2215}, {""label"": ""Description"", ""start"": 2219, ""end"": 2275}, {""label"": ""Description"", ""start"": 2374, ""end"": 2397}, {""label"": ""Description"", ""start"": 2447, ""end"": 2472}, {""label"": ""Description"", ""start"": 2525, ""end"": 2555}, {""label"": ""Description"", ""start"": 2608, ""end"": 2635}, {""label"": ""Description"", ""start"": 2685, ""end"": 2700}, {""label"": ""Description"", ""start"": 2766, ""end"": 2789}, {""label"": ""Description"", ""start"": 2839, ""end"": 2862}, {""label"": ""Description"", ""start"": 2912, ""end"": 2935}, {""label"": ""Value"", ""start"": 1264, ""end"": 1280}, {""label"": ""Value"", ""start"": 1341, ""end"": 1357}, {""label"": ""Value"", ""start"": 2281, ""end"": 2297}, {""label"": ""Value"", ""start"": 2328, ""end"": 2345}, {""label"": ""Value"", ""start"": 2402, ""end"": 2418}, {""label"": ""Value"", ""start"": 2477, ""end"": 2494}, {""label"": ""Value"", ""start"": 2560, ""end"": 2577}, {""label"": ""Value"", ""start"": 2640, ""end"": 2656}, {""label"": ""Value"", ""start"": 2705, ""end"": 2726}, {""label"": ""Value"", ""start"": 2794, ""end"": 2810}, {""label"": ""Value"", ""start"": 2867, ""end"": 2883}, {""label"": ""Value"", ""start"": 2940, ""end"": 2956}, {""label"": ""Amount"", ""start"": 1281, ""end"": 1305}, {""label"": ""Amount"", ""start"": 1358, ""end"": 1382}, {""label"": ""Amount"", ""start"": 1417, ""end"": 1423}, {""label"": ""Amount"", ""start"": 2298, ""end"": 2322}, {""label"": ""Amount"", ""start"": 2346, ""end"": 2370}, {""label"": ""Amount"", ""start"": 2419, ""end"": 2443}, {""label"": ""Amount"", ""start"": 2495, ""end"": 2519}, {""label"": ""Amount"", ""start"": 2578, ""end"": 2602}, {""label"": ""Amount"", ""start"": 2657, ""end"": 2681}, {""label"": ""Amount"", ""start"": 2746, ""end"": 2762}, {""label"": ""Amount"", ""start"": 2811, ""end"": 2835}, {""label"": ""Amount"", ""start"": 2884, ""end"": 2908}, {""label"": ""Amount"", ""start"": 2957, ""end"": 2981}]" +"154","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +DUFFEY, MICHAEL P. + +Special Assistant for White House Liaison, Office of the Secretary of Defense, Office of the Secretary of Defense +Date of Appointment: 01/20/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +MICHAEL P. DUFFEY +User ID: 673C2A452E3A2CE3 +05/12/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +Other review conducted by + +U.S. Office of Government Ethics Certification + +1. Filer Positions Held outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 Duffey Consulting, LLC Milwaukee, WI, USA Business Enterprise Member 12/2015 Present + +2 Republican Party of Wisconsin Madison, WI, USA Non -Profit Organiza +tion + +Employee 07/2015 11/2016 + +2. Filer's Employment Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 RPW Simple IRA - AMCAP Fund (AMCPX) Yes $15,001 - $50,000 None (or less than +$201) + +2 Duffey Consutling, LLC N/A Fees $1441 + +3 Republican Party of Wisconsin N/A Salary $162000 + +3. Filer Employment Agreements and Arrangements +EMPLOYER OR OTHER PARTY TO + +# AGREEMENT/ARRANGEMENT CITY/STATE STATUS AND TERMS DATE + +1 Republican Party of Wisconsin Madison, WI, USA Continuing participation in Employee Benefit Plan: M +aintaining a simple IRA (Retirement Plan) with my for +mer employer. Neither I nor RPW continue to make cont +ributions to this plan. + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +# SOURCE NAME CITY, STATE BRIEF DESCRIPTION OF DUTIES + +1 Republican Party of Wisconsin Madison, WI Served as Executive Director, managing day- +to-day operations of the organization, incl +uding staff, budget and all activities. + +08/2015 + +5. Spouse's Employment Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Everyday Haute, LLC 6. Other Assets and Income N/A Income from personal services +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Bank of America Checking and Savings Account N/A $15,001 - $50,000 None (or less than $201) +2 Bank of America (stock) N/A $15,001 - $50,000 Dividends $201 - $1,000 +3 COLUMBIA GLOBAL DIVIDEND OPPORTUNITY FUND -Z (CSVFX) Yes $1,001 - $15,000 $201 - $1,000 +4 Bank of America Checking and Savings Accounts N/A $15,001 - $50,000 None (or less than $201) +5 The R.E. Revokable Trust N/A $500,001 - $1,000,000 None (or less than + +$201) + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside the United States Government +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets and Income + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets and Income + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1349, ""end"": 1384}, {""label"": ""Description"", ""start"": 1435, ""end"": 1457}, {""label"": ""Description"", ""start"": 1476, ""end"": 1505}, {""label"": ""Description"", ""start"": 2803, ""end"": 2847}, {""label"": ""Description"", ""start"": 2991, ""end"": 3014}, {""label"": ""Description"", ""start"": 3168, ""end"": 3220}, {""label"": ""Description"", ""start"": 3345, ""end"": 3390}, {""label"": ""Description"", ""start"": 3533, ""end"": 3557}, {""label"": ""Value"", ""start"": 1389, ""end"": 1406}, {""label"": ""Value"", ""start"": 2862, ""end"": 2879}, {""label"": ""Value"", ""start"": 3050, ""end"": 3067}, {""label"": ""Value"", ""start"": 3227, ""end"": 3243}, {""label"": ""Value"", ""start"": 3404, ""end"": 3421}, {""label"": ""Value"", ""start"": 3592, ""end"": 3613}, {""label"": ""Amount"", ""start"": 1407, ""end"": 1431}, {""label"": ""Amount"", ""start"": 1467, ""end"": 1472}, {""label"": ""Amount"", ""start"": 1517, ""end"": 1524}, {""label"": ""Amount"", ""start"": 2916, ""end"": 2940}, {""label"": ""Amount"", ""start"": 3104, ""end"": 3117}, {""label"": ""Amount"", ""start"": 3281, ""end"": 3294}, {""label"": ""Amount"", ""start"": 3458, ""end"": 3482}, {""label"": ""Amount"", ""start"": 3646, ""end"": 3671}]" +"157","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +KUTLER, BENJAMIN S. + +Special Assistant, OUSD-Policy, Department of Defense +Date of Appointment: 11/06/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +BENJAMIN S. KUTLER +User ID: BD588F7814C1937E +02/21/2018 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +JEFFREY A. GREEN +User ID: 06EEE68944867E81 +02/21/2018 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +ANDREW R. THOMPSON +User ID: 5C7D545406983205 +02/21/2018 + +U.S. Office of Government Ethics Certification + +Comments of Reviewing Officials (public annotations): + +PART # REFERENCE COMMENT + +1. 1 EY (02/21/18, MONDAY, RENEE M.): Filer confirmed - no retirement plan wit +h former employer; salary - $75K. + +6. 2 Bank Deposits (02/21/18, MONDAY, RENEE M.): Filer confirmed this is with a U.S. Dome +stic Bank. +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 EY Tysons, VA, USA Business Enterprise Consultant 04/2015 11/2017 + +2. Filer's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +3. Filer's Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +# SOURCE NAME CITY, STATE BRIEF DESCRIPTION OF DUTIES + +1 EY Tysons, VA I was a Senior Analyst at EY in the Transac +tion Advisory Services (TAS) Practice from +April 2015 -November 2017. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT +1 Fidelity Account - Ernst & Young 401k cycle Fund - Fidelity Life Yes $15,001 - $50,000 None (or less $201) than +1.1 Vanguard Target Retirement 2050 Trust Plus Yes $15,001 - $50,000 None (or less $201) than +2 Bank Deposits N/A $1,001 - $15,000 None (or less $201) than +3 Morgan Stanley - Personal Account Yes $50,001 - $100,000 Dividends $201 - $1,000 +3.1 Lincoln Life Reserve Accum IUL 2014 No $15,001 - $50,000 None (or less $201) than +3.2 Vanguard Total World Stock Index Fund Yes $15,001 - $50,000 Dividends $201 - $1,000 +3.3 Morgan Stanley Bank - Cash N/A $1,001 - $15,000 None (or less $201) than +4 Morgan Stanley - Retirement Account Yes $15,001 - $50,000 None (or less $201) than +4.1 Vanguard Total World Stock Index Fund Yes $15,001 - $50,000 None (or less than + +$201) + +7. Transactions + +This report has no reported Transactions +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 2251, ""end"": 2317}, {""label"": ""Description"", ""start"": 2387, ""end"": 2441}, {""label"": ""Description"", ""start"": 2523, ""end"": 2536}, {""label"": ""Description"", ""start"": 2659, ""end"": 2692}, {""label"": ""Description"", ""start"": 2783, ""end"": 2818}, {""label"": ""Description"", ""start"": 2919, ""end"": 2956}, {""label"": ""Description"", ""start"": 3043, ""end"": 3069}, {""label"": ""Description"", ""start"": 3179, ""end"": 3214}, {""label"": ""Description"", ""start"": 3315, ""end"": 3352}, {""label"": ""Value"", ""start"": 2323, ""end"": 2340}, {""label"": ""Value"", ""start"": 2459, ""end"": 2476}, {""label"": ""Value"", ""start"": 2595, ""end"": 2611}, {""label"": ""Value"", ""start"": 2731, ""end"": 2749}, {""label"": ""Value"", ""start"": 2855, ""end"": 2872}, {""label"": ""Value"", ""start"": 2991, ""end"": 3008}, {""label"": ""Value"", ""start"": 3115, ""end"": 3131}, {""label"": ""Value"", ""start"": 3251, ""end"": 3268}, {""label"": ""Value"", ""start"": 3387, ""end"": 3404}, {""label"": ""Amount"", ""start"": 2356, ""end"": 2381}, {""label"": ""Amount"", ""start"": 2492, ""end"": 2517}, {""label"": ""Amount"", ""start"": 2628, ""end"": 2653}, {""label"": ""Amount"", ""start"": 2764, ""end"": 2777}, {""label"": ""Amount"", ""start"": 2888, ""end"": 2913}, {""label"": ""Amount"", ""start"": 3024, ""end"": 3037}, {""label"": ""Amount"", ""start"": 3148, ""end"": 3173}, {""label"": ""Amount"", ""start"": 3284, ""end"": 3309}, {""label"": ""Amount"", ""start"": 3420, ""end"": 3452}]" +"166","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +COOK, ANTHONY L. + +Special Assistant, OASD Manpower and Reserve Affairs, Office of the ASD +Date of Appointment: 08/28/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +ANTHONY L. COOK +User ID: D2B510C0C7953198 +09/25/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +SCOTT F. THOMPSON +User ID: 87F0125228A7148A +12/14/2017 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +Stephanie A. Barna +User ID: 0E560521C9F0CC1D +09/25/2017 + +U.S. Office of Government Ethics Certification + +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 Service Corps of Retired Executives Herndon, VA, USA Non -Profit Organiza +tion + +Employee 10/2012 08/2017 + +2 TV Series House of Cards Baltimore, MD, USA Business Enterprise Employee 06/2015 08/2016 +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 SCORE Association 403B (AXA Balance Strategy Fund) Yes $15,001 - $50,000 None (or less than +$201) + +2 Capitol One Checking Account N/A $1,001 - $15,000 None (or less than +$201) + +3 SCORE Association N/A Salary $83000 + +3. Filer's Employment Agreements and Arrangements + +EMPLOYER OR OTHER PARTY TO + +# AGREEMENT/ARRANGEMENT CITY/STATE STATUS AND TERMS DATE + +1 Service Corps of Retired Executives Reston, VA, USA Continuing participation in Employee Benefit Plan: I +maintain a retirement account with my former employe +r. Neither I nor my former employer continue to make +contributions to this plan. + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +# SOURCE NAME CITY, STATE BRIEF DESCRIPTION OF DUTIES + +1 Service Corps of Retired Executives Herndon, VA Managed all IT issues. Supervised 5 employe +es. Responded to all organizational questio +ns. Ethics to new Chapter creation. + +12/2012 + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +This report has no reported Assets + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1501, ""end"": 1551}, {""label"": ""Description"", ""start"": 1602, ""end"": 1630}, {""label"": ""Description"", ""start"": 1680, ""end"": 1697}, {""label"": ""Value"", ""start"": 1556, ""end"": 1573}, {""label"": ""Value"", ""start"": 1635, ""end"": 1651}, {""label"": ""Amount"", ""start"": 1574, ""end"": 1598}, {""label"": ""Amount"", ""start"": 1652, ""end"": 1676}, {""label"": ""Amount"", ""start"": 1709, ""end"": 1715}]" +"167","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +WOOLFOLK, TIFFANII L. + +Special Assistant, OASDLA, Department of Defense +Date of Appointment: 10/30/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: + +Legislative Assistant, U.S. House of Representatives, 1/2016 - 10/2017 + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +TIFFANII L. WOOLFOLK +User ID: A9BD8A3C8365B831 +12/20/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +JEFFREY A. GREEN +User ID: 06EEE68944867E81 +01/04/2018 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +EDMUND P. GIAMBASTIANI III +User ID: 2A23BC70238546DB +01/02/2018 + +U.S. Office of Government Ethics Certification + +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 apex Systems LLC Glen Allen, VA, USA Business Enterprise Employee 10/2015 01/2016 +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Apex Systems LLC N/A Salary $2542 + +3. Filer's Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +This report has no reported Compensation Exceeding $5,000 + +5. Spouse's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Montgomery County Maryland Defined Benefit Plan (Valu +e not Readily Ascertainable) + +2 Roth 457- T. Rowe Price Retirement 2050 Fund Yes $1,001 - $15,000 None (or less than +$201) + +3 Montgomery County Maryland N/A Salary + +N/A None (or less than +$1,001) + +None (or less than +$201) + +6. Other Assets and Income + +This report has no reported Assets + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +# CREDITOR NAME TYPE OF LIABILITY AMOUNT YEAR INCURRED INTEREST RATE TERM +1 Department of Education Student Loan $15,001 - 2014 5.41% 30 Years + $50,000 +2 Department of Education Student Loan $15,001 - 2015 6.21% 30 Years + $50,000 +3 Navy Federal Credit Union Credit Card/Revolving Charge Account $10,001 - 2017 11.99% on Demand + $15,000 +4 USAA Bank Credit Card/Revolving Charge Account $10,001 - 2017 Prime+9.65% on demand + $15,000 + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1447, ""end"": 1463}, {""label"": ""Description"", ""start"": 1828, ""end"": 1910}, {""label"": ""Description"", ""start"": 1914, ""end"": 1958}, {""label"": ""Description"", ""start"": 2008, ""end"": 2034}, {""label"": ""Amount"", ""start"": 1475, ""end"": 1480}, {""label"": ""Amount"", ""start"": 1980, ""end"": 2004}, {""label"": ""Amount"", ""start"": 2079, ""end"": 2103}, {""label"": ""Value"", ""start"": 1963, ""end"": 1979}, {""label"": ""Value"", ""start"": 2051, ""end"": 2077}]" +"168","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +DWYER, SARAH J. + +Special Assistant, OSD, Depatment of Defense +Date of Appointment: 09/18/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +SARAH J. DWYER +User ID: AE5F6873DB9BB915 +10/06/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +KAREN L. DALHEIM +User ID: 6A84147D70FCE634 +11/21/2017 + +Other review conducted by + +U.S. Office of Government Ethics Certification + +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO +1 Department of Defense Washington , DC, USA U.S. Government Employee 09/2017 Present +2 National Catholic Prayer Breakfast Washington, DC, USA Non -Profit tion Organiza Consultant 04/2017 06/2017 +3 The Institute of World Politics Washington, DC, DC, USA Educational tion Institu Employee 08/2013 09/2017 + +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +13 Salary 1 N/A Salary $42000 +14 Salary 2 N/A Salary $4700 + +3. Filer's Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +# SOURCE NAME CITY, STATE BRIEF DESCRIPTION OF DUTIES + +1 NCPB Washington , DC Private consultant for event planning. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +This report has no reported Assets + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +# CREDITOR NAME TYPE OF LIABILITY AMOUNT YEAR INCURRED INTEREST RATE TERM +1 DIRECT LOANS (student) Loan $15,001 - $50,000 2009 6.55% 10 +2 Great Lakes Student Loans Loan $15,001 - 2010 6.7% 10 + $50,000 +3 RISLA Loan $10,001 - 2010 6.5% 10 + $15,000 + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1646, ""end"": 1654}, {""label"": ""Amount"", ""start"": 1666, ""end"": 1672}]" +"169","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +LANE, HOLLY + +Special Assistant - Advance Officer, Office of the Secretary of Defense, Office of the Secretary of Defense +Date of Appointment: 01/25/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +HOLLY LANE +User ID: 28E5A584A695FEC9 +04/19/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +SCOTT F. THOMPSON +User ID: 87F0125228A7148A +04/20/2017 + +Other review conducted by + +U.S. Office of Government Ethics Certification + +1. Filer Positions Held outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 Harbinger, LLC Washington, DC, USA Communications Firm Employee 07/2016 07/2016 + +2 Insperity PEO Services LP Kingwood, TX, USA HR Outsourcing Busi +ness + +Temporary Employee 01/2016 07/2016 + +3 Insperity PEO Services LP Kingwood, TX, USA HR Outsourcing Busi +ness + +2. Filer's Employment Assets and Income + +Temporary Employee 12/2016 01/2017 + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Donald J Trump for President N/A Fees $21400 +2 Harbinger, LLC N/A Salary $1750 + +3 Insperity PEO Services LP N/A Fees $25176 + +3. Filer Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +# SOURCE NAME CITY, STATE BRIEF DESCRIPTION OF DUTIES + +1 Donald J Trump for President New York, NY Advance Officer - Press Lead + +2 Insperity PEO Services LP Phoenix, AZ Field Director for political campaign + +3 Insperity PEO Services LP Washington, DC Pres. Inaugural Committee Ticketing and Inv +itations + +5. Spouse's Employment Assets and Income + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 PIONEER CORE EQUITY FUND A Yes $1,001 - $15,000 None (or less than +$201) + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside the United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. +2. Filer's Employment Assets and Income + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets and Income + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1514, ""end"": 1542}, {""label"": ""Description"", ""start"": 1561, ""end"": 1575}, {""label"": ""Description"", ""start"": 1596, ""end"": 1621}, {""label"": ""Description"", ""start"": 2272, ""end"": 2298}, {""label"": ""Amount"", ""start"": 1552, ""end"": 1558}, {""label"": ""Amount"", ""start"": 1587, ""end"": 1592}, {""label"": ""Amount"", ""start"": 1631, ""end"": 1637}, {""label"": ""Amount"", ""start"": 2320, ""end"": 2344}, {""label"": ""Value"", ""start"": 2303, ""end"": 2319}]" +"170","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +ULLYOT, JONATHAN L. + +Special Assistant to the SD, OSD Public Affairs, OSD +Date of Appointment: 01/20/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +JONATHAN L. ULLYOT +User ID: 6967A90B5B5C7E7E +03/06/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +Other review conducted by + +U.S. Office of Government Ethics Certification + +1. Filer Positions Held outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 Brighton Strategy Group LLC Washington, DC, USA Business Enterprise Managing partner 05/2015 Present + +2. Filer's Employment Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Brighton Strategy Group LLC 401(K) - Vanguard Target +Retirement 2040 Fund + +Yes $100,001 - $250,000 Dividends, Interest $5,001 - $15,000 + +2 Brighton Strategy Group LLC N/A Fees $130000 + +3. Filer Employment Agreements and Arrangements + +EMPLOYER OR OTHER PARTY TO + +# AGREEMENT/ARRANGEMENT CITY/STATE STATUS AND TERMS DATE +1 Brighton Strategy Group LLC Washington, DC, USA Continuing participation in Employee Benefit Plan: C +ontinuing participation in 401K plan - no further con +tributions being made. + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +# SOURCE NAME CITY, STATE BRIEF DESCRIPTION OF DUTIES +1 Donald J. Trump for President New York, NY Communications consulting. +2 DuPont Wilmington , DE Communications consulting. +3 Presidential Transition Office Washington, DC Communications consulting. +4 Republican National Convention Cleveland, OH Communications consulting. + +05/2015 + +5. Spouse's Employment Assets and Income + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Domestic U.S. bank cash accounts No $1,001 - $15,000 None (or less than +$201) + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside the United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets and Income + +Part 2 discloses the following: +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets and Income + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1204, ""end"": 1277}, {""label"": ""Description"", ""start"": 1343, ""end"": 1370}, {""label"": ""Description"", ""start"": 2332, ""end"": 2364}, {""label"": ""Value"", ""start"": 1283, ""end"": 1302}, {""label"": ""Value"", ""start"": 2368, ""end"": 2384}, {""label"": ""Amount"", ""start"": 1323, ""end"": 1339}, {""label"": ""Amount"", ""start"": 1380, ""end"": 1387}, {""label"": ""Amount"", ""start"": 2385, ""end"": 2409}]" +"181","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +SEYMOUR, ALEXANDRA J. + +Special Assistant, OUSD(P), Department of Defense +Date of Appointment: 09/25/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: + +Intern, Office of Congressman Paul Cook, 8/2017 - 9/2017 + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +ALEXANDRA J. SEYMOUR +User ID: F86E83C1EEB93DF6 +12/05/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +JEFFREY A. GREEN +User ID: 06EEE68944867E81 +12/20/2017 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +THOMAS A. ALEXANDER +User ID: C04872059CB47DEA +12/13/2017 + +U.S. Office of Government Ethics Certification + +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 Policy and Taxation Group Washington, DC, USA Non -Profit Organiza +tion + +Contractor 07/2017 09/2017 +2 The Heritage Foundation Washington, DC, USA Think tank Intern 05/2016 08/2016 +3 The Hertog Foundation Washington, DC, USA Educational tion Institu Fellow 06/2015 08/2015 +4 The Weekly Standard Washington, DC, USA Business Enterprise Intern 04/2017 06/2017 +5 Washington and Lee University Lexington, VA, USA Educational tion Institu Student 08/2013 05/2017 + +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Independent Contracting, Policy and Taxation Group N/A Income from personal +services + +3. Filer's Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +This report has no reported Compensation Exceeding $5,000 + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +This report has no reported Assets + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +$400 +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1914, ""end"": 1964}, {""label"": ""Amount"", ""start"": 2680, ""end"": 2684}]" +"182","136","Incumbent Report 2018 | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +LAPOINTE, COLEMAN D. + +Director of Travel, OSD, OSD +Report Year: 2018 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +COLEMAN D. LAPOINTE +User ID: 5BAAA44CA4A16648 +03/20/2018 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +KAREN L. DALHEIM +User ID: 6A84147D70FCE634 +03/28/2018 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +HALLOCK N. MOHLER +User ID: 653D50E53E097C3F +03/21/2018 + +U.S. Office of Government Ethics Certification + +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 Barbara Bush LIteracy Foundation Tallahassee, FL, USA Non -Profit Organiza +tion + +Development 07/2016 08/2017 +2. Filer's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +3. Filer's Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +This report has no reported Compensation Exceeding $5,000 + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Edward Jones Yes $15,001 - $50,000 Dividends $201 - $1,000 + +2 TD Bank N/A None (or less than +$1,001) + +None (or less than +$201) + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +# CREDITOR NAME TYPE OF LIABILITY AMOUNT + +YEAR +INCURRED + +INTEREST +RATE TERM + +1 Great Lakes Consolidated Student loan $15,001 - +$50,000 + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +2012 5.26% on demand + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1758, ""end"": 1770}, {""label"": ""Description"", ""start"": 1820, ""end"": 1827}, {""label"": ""Value"", ""start"": 1775, ""end"": 1792}, {""label"": ""Value"", ""start"": 1832, ""end"": 1858}, {""label"": ""Amount"", ""start"": 1803, ""end"": 1816}, {""label"": ""Amount"", ""start"": 1860, ""end"": 1884}]" +"183","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +GRIFFITH, KELLY L. + +Protocol Officer, Office of the Secretary of Defense, Department of Defense +Date of Appointment: 01/23/2018 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +KELLY L. GRIFFITH +User ID: E6507D26A2124E0D +02/14/2018 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +AMY K. MITCHELL +User ID: 49295203192304EC +02/14/2018 + +Reviewer: + +eSigned in FDM by: + +ERIC C. RISHEL +User ID: 3A1D8A8810643A49 +03/16/2018 + +U.S. Office of Government Ethics Certification + +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 Tragedy Assistance Program for Survivors Arlington, VA, USA Non -Profit Organiza +tion + +Manager/Editor 06/2014 01/2018 +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +4 Tragedy Assistance Program for Survivors N/A Salary $55000 + +3. Filer's Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +# SOURCE NAME CITY, STATE BRIEF DESCRIPTION OF DUTIES + +1 Tragedy Assistance Program for Survivors Arlington, VA I worked with a Board to set/maintain edito +rial vision, brand, and voice of magazine, +managed timeline, procured and produced con +tent as needed, and oversaw design. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +This report has no reported Assets + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1435, ""end"": 1475}, {""label"": ""Amount"", ""start"": 1487, ""end"": 1493}]" +"185","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +JOHNSON, CHRISTOPHER T. + +Date of Appointment: 01/30/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +CHRISTOPHER T. JOHNSON +User ID: 13E9E7784BE04B6B +03/31/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +JEFFREY A. GREEN +User ID: 06EEE68944867E81 +04/12/2017 + +Other review conducted by +Reviewer: + +eSigned in FDM by: + +JEFFREY A. GREEN +User ID: 06EEE68944867E81 +04/11/2017 + +U.S. Office of Government Ethics Certification + +1. Filer Positions Held outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 Donald Trump for President Albuquerque, NM, USA Politics Director 08/2016 11/2016 + +2 Republican Party of New Mexico Albuquerque, NM, USA Politics Director 12/2014 11/2016 + +2. Filer's Employment Assets and Income +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 RPNM N/A Salary $72000 + +2 State Director for Donald Trump For President N/A Salary $26000 + +3. Filer Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +# SOURCE NAME CITY, STATE BRIEF DESCRIPTION OF DUTIES + +1 Donald Trump For President Albuquerque, NM State Director + +2 Republican Party of New Mexico Albuquerque, NM Political Director for the State of New Mex +ico. + +5. Spouse's Employment Assets and Income + +This report has no reported Assets + +6. Other Assets and Income + +This report has no reported Assets + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside the United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets and Income +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets and Income + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[]" +"189","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +HORN, ANDREW L. + +Special Assistant to the DASD-APC, OSD/OUSD-P/APSA/APC, Office of the Secretary of Defense +Date of Appointment: 07/24/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: None + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +ANDREW L. HORN +User ID: B2F4685643AB93B5 +08/21/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +ERIC C. RISHEL +User ID: 3A1D8A8810643A49 +12/21/2017 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +DAVID F. HELVEY +User ID: F0CE72F2E3AF8614 +08/21/2017 + +U.S. Office of Government Ethics Certification + +1. Filer's Positions Held Outside United States Government + +# NAME CITY, STATE OGE TYPE POSITION FROM TO + +1 Deloitte Consulting LLP Arlington, VA, USA Business Enterprise Consultant 01/2016 07/2017 +2. Filer's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +3. Filer's Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +This report has no reported Compensation Exceeding $5,000 + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Rental House N/A $100,001 - $250,000 Rent and Royalties $5,001 - $15,000 + +2 Morgan Stanley Brokerage Account N/A $250,001 - $500,000 Dividends, Capital +Gains, Interest + +$5,001 - $15,000 + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. + +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. + +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1798, ""end"": 1810}, {""label"": ""Description"", ""start"": 1874, ""end"": 1906}, {""label"": ""Value"", ""start"": 1815, ""end"": 1834}, {""label"": ""Value"", ""start"": 1911, ""end"": 1930}, {""label"": ""Amount"", ""start"": 1854, ""end"": 1870}, {""label"": ""Amount"", ""start"": 1967, ""end"": 1983}]" +"190","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +OVERLAND, ABBEY E. + +Special Assistant, OASD LA, Department of Defense +Date of Appointment: 06/18/2018 + +Other Federal Government Positions Held During the Preceding 12 Months: + +Legislative Assistant, U.S. Senate, 6/2015 - 5/2018 + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +ABBEY E. OVERLAND +User ID: 82afa743aa88abd3cd71b95b734f118bd1f7dae99b4e3703a20d7ba7ad58e6179783e1b324a2 +07/12/2018 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +JEFFREY A. GREEN +User ID: 0892f0c00b124a178336bf67f85ea48cb9218faef1ea4c0b8975984c9b8d9aecb1b72ff0 +08/22/2018 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +EDMUND P. GIAMBASTIANI III +User ID: e66a382d37ae22bf8d6724722833fedf1836455f3010ba36677c249ab9c672e9d0071feb3d26 +07/16/2018 + +U.S. Office of Government Ethics Certification + +1. Filer's Positions Held Outside United States Government +This report has no reported Positions Held Outside United States Government +2. Filer's Employment Assets & Income and Retirement Accounts + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 TSP N/A $1,001 - $15,000 TSP Account $13,000 + +3. Filer's Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +This report has no reported Compensation Exceeding $5,000 + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Savings Account - FirstBank N/A $1,001 - $15,000 Savings Account $10,000 + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $390 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $390 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $156 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1544, ""end"": 1547}, {""label"": ""Description"", ""start"": 2000, ""end"": 2027}, {""label"": ""Value"", ""start"": 1552, ""end"": 1568}, {""label"": ""Value"", ""start"": 2032, ""end"": 2048}, {""label"": ""Amount"", ""start"": 1581, ""end"": 1588}, {""label"": ""Amount"", ""start"": 2065, ""end"": 2072}]" +"194","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +MACDERMOTT, COLIN + +Special Assistant, US Department of Defense, Office of the Secretary of Defense +Date of Appointment: 08/20/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: + +Professional Staff Member, US Senate Appropriations Committee, 1/2013 - 8/2017 + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +COLIN MACDERMOTT +User ID: EC8B4BD0BCD181D6 +09/12/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +KURT T. GERLACH +User ID: A362E5D13AC976AA +10/06/2017 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +EDMUND P. GIAMBASTIANI III +User ID: 2A23BC70238546DB +09/13/2017 + +U.S. Office of Government Ethics Certification + +1. Filer's Positions Held Outside United States Government +This report has no reported Positions Held Outside United States Government +2. Filer's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +3. Filer's Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +This report has no reported Compensation Exceeding $5,000 + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 Navy Federal Credit Union N/A $1,001 - $15,000 None (or less than +$201) + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1815, ""end"": 1840}, {""label"": ""Value"", ""start"": 1845, ""end"": 1861}, {""label"": ""Amount"", ""start"": 1862, ""end"": 1886}]" +"200","136","New Entrant Report | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +CHURCHILL, ADRIELLE L. + +Special Assistant to ASD(LA) Chief, AT&L, ASD (LA), Department of Defense +Date of Appointment: 06/26/2017 + +Other Federal Government Positions Held During the Preceding 12 Months: + +Legislative Director/Counsel/Assistant, US House of Representatives, 2/2011 - 6/2017 + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +ADRIELLE L. CHURCHILL +User ID: C62F49DF82ACE990 +08/30/2017 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +KURT T. GERLACH +User ID: A362E5D13AC976AA +09/12/2017 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +EDMUND P. GIAMBASTIANI III +User ID: 2A23BC70238546DB +09/05/2017 + +U.S. Office of Government Ethics Certification + +1. Filer's Positions Held Outside United States Government +This report has no reported Positions Held Outside United States Government +2. Filer's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +3. Filer's Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +This report has no reported Compensation Exceeding $5,000 + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +This report has no reported Assets + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts + +Part 2 discloses the following: +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $375 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $150 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[]" +"201","136","Incumbent Report 2019 | U.S. Office of Government Ethics; 5 C.F.R. part 2634 | Form Approved: OMB No. (3209-0001)(March 2014) + +Executive Branch Personnel Public Financial Disclosure Report (OGE Form 278e) + +Filer's Information + +PEARCE, MICHELE + +Deputy General Counsel, Office of General Counsel, Department of Defense +Report Year: 2019 + +Other Federal Government Positions Held During the Preceding 12 Months: + +Attorney Adviser, Office of General Counsel (P&HP), 9/2016 - 6/2018 + +Electronic Signature - I certify that the statements I have made in this form are true, complete and correct to the best of my knowledge. + +eSigned in FDM by: + +MICHELE PEARCE +User ID: bbd79b11055875b7bccb63c529bb73457246a3d55c3c4c9185a889cfe1ed803cdd98654a867b +04/15/2019 + +Agency Ethics Official's Opinion - On the basis of information contained in this report. I conclude that the filer is in compliance with applicable laws and +regulations(Subject to any comments below). + +eSigned in FDM by: + +JEFFREY A. GREEN +User ID: aa2407dd8a8807c80c648a039aebc3c0416bac86e3403430d597c79f3e173916b8431e6f +06/05/2019 + +Other review conducted by +Supervisor: + +eSigned in FDM by: + +PAUL S. KOFFSKY +User ID: 692f4b3aff848ab91ebf3d7154469a3a0ab7e6c0db8c07b51e20ced460b40cf408d64a8d +05/14/2019 + +U.S. Office of Government Ethics Certification + +1. Filer's Positions Held Outside United States Government +This report has no reported Positions Held Outside United States Government +2. Filer's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +3. Filer's Employment Agreements and Arrangements + +This report has no reported Agreements and Arrangements + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year +This report has no reported Compensation Exceeding $5,000 + +5. Spouse's Employment Assets & Income and Retirement Accounts + +This report has no reported Assets + +6. Other Assets and Income + +# DESCRIPTION EIF VALUE INCOME TYPE INCOME AMOUNT + +1 U.S. bank account (cash) No $15,001 - $50,000 None (or less than +$201) + +7. Transactions + +This report has no reported Transactions + +8. Liabilities + +This report has no reported Liabilities + +9. Gifts and Travel Reimbursements + +This report has no reported Gifts and Reimbursements + +Summary of Contents + +1. Filer's Positions Held Outside United States Government + +Part 1 discloses positions that the filer held at any time during the reporting period (excluding positions with the United States Government). Positions are reportable even if the filer did +not receive compensation. This section does not include the following: (1) positions with religious, social, fraternal, or political organizations; (2) positions solely of an honorary nature; (3) +positions held as part of the filer's official duties with the United States Government; (4) mere membership in an organization; and (5) passive investment interests as a limited partner or non - +managing member of a limited liability company. + +2. Filer's Employment Assets & Income and Retirement Accounts +Part 2 discloses the following: + +• Sources of earned and other non -investment income of the filer totaling more than $200 during the reporting period (e.g., salary, fees, partnership share, honoraria, scholarships, and prizes) +• Assets related to the filer's business, employment, or other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 +in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred compensation, +and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's business, employment, or other income - +generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). + +3. Filer's Employment Agreements and Arrangements + +Part 3 discloses agreements or arrangements that the filer had during the reporting period with an employer or former employer (except the United States Government), such as the following: + +• Future employment + +• Leave of absence + +• Continuing payments from an employer, including severance and payments not yet received for previous work (excluding ordinary salary from a current employer) + +• Continuing participation in an employee welfare, retirement, or other benefit plan, such as pensions or a deferred compensation plan + +• Retention or disposition of employer -awarded equity, sharing in profits or carried interests (e.g., vested and unvested stock options, restricted stock, future share of a company's profits, etc.) + +4. Filer's Sources of Compensation Exceeding $5,000 in a Year + +Part 4 discloses sources (except the United States Government) that paid more than $5,000 in a calendar year for the filer's services during any year of the reporting period. The filer discloses +payments both from employers and from any clients to whom the filer personally provided services. The filer discloses a source even if the source made its payment to the filer's employer +and not to the filer. The filer does not disclose a client's payment to the filer's employer if the filer did not provide the services for which the client is paying. + +5. Spouse's Employment Assets & Income and Retirement Accounts + +Part 5 discloses the following: + +• Sources of earned income (excluding honoraria) for the filer's spouse totaling more than $1,000 during the reporting period (e.g., salary, consulting fees, and partnership share) + +• Sources of honoraria for the filer's spouse greater than $200 during the reporting period + +• Assets related to the filer's spouse's employment, business activities, other income -generating activities that (1) ended the reporting period with a value greater than $1,000 or (2) produced +more than $200 in income during the reporting period (e.g., equity in business or partnership, stock options, retirement plans/accounts and their underlying holdings as appropriate, deferred +compensation, and intellectual property, such as book deals and patents) + +This section does not include assets or income from United States Government employment or assets that were acquired separately from the filer's spouse's business, employment, or other +income -generating activities (e.g., assets purchased through a brokerage account). Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). Amounts of income are not required for a spouse's earned income (excluding honoraria). + +6. Other Assets and Income + +Part 6 discloses each asset, not already reported, that (1) ended the reporting period with a value greater than $1,000 or (2) produced more than $200 in investment income during the +reporting period. For purposes of the value and income thresholds, the filer aggregates the filer's interests with those of the filer's spouse and dependent children. This section does not +include the following types of assets: (1) a personal residence (unless it was rented out during the reporting period); (2) income or retirement benefits associated with United States +Government employment (e.g., Thrift Savings Plan); and (3) cash accounts (e.g., checking, savings, money market accounts) at a single financial institution with a value of $5,000 or less +(unless more than $200 of income was produced). Additional exceptions apply. Note: The type of income is not required if the amount of income is $0 - $200 or if the asset qualifies as an +excepted investment fund (EIF). +7. Transactions + +Part 7 discloses purchases, sales, or exchanges of real property or securities in excess of $1,000 made on behalf of the filer, the filer's spouse or dependent child during reporting period. This +section does not include transactions that concern the following: (1) a personal residence, unless rented out; (2) cash accounts (e.g., checking, savings, CDs, money market accounts) and +money market mutual funds; (3) Treasury bills, bonds, and notes; and (4) holdings within a federal Thrift Savings Plan account. Additional exceptions apply. + +8. Liabilities + +Part 8 discloses liabilities over $10,000 that the filer, the filer's spouse or dependent child owed at any time during the reporting period. This section does not include the following types of +liabilities: (1) mortgages on a personal residence, unless rented out (limitations apply for PAS filers); (2) loans secured by a personal motor vehicle, household furniture, or appliances, unless +the loan exceeds the item's purchase price; and (3) revolving charge accounts, such as credit card balances, if the outstanding liability did not exceed $10,000 at the end of the reporting +period. Additional exceptions apply. + +9. Gifts and Travel Reimbursements + +This section discloses: + +• Gifts totaling more than $390 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. +• Travel reimbursements totaling more than $390 that the filer, the filer's spouse, and dependent children received from any one source during the reporting period. + +For purposes of this section, the filer need not aggregate any gift or travel reimbursement with a value of $156 or less. Regardless of the value, this section does not include the following +items: (1) anything received from relatives; (2) anything received from the United States Government or from the District of Columbia, state, or local governments; (3) bequests and other +forms of inheritance; (4) gifts and travel reimbursements given to the filer's agency in connection with the filer's official travel; (5) gifts of hospitality (food, lodging, entertainment) at the +donor's residence or personal premises; and (6) anything received by the filer's spouse or dependent children totally independent of their relationship to the filer. Additional exceptions apply. + +Privacy Act Statement + +Title I of the Ethics in Government Act of 1978, as amended (the Act), 5 U.S.C. app. § 101 et seq., as amended by the Stop Trading on Congressional Knowledge Act of 2012 (Pub. L. + +112-105) (STOCK Act), and 5 C.F.R. Part 2634 of the U. S. Office of Government Ethics regulations require the reporting of this information. The primary use of the information on this +report is for review by Government officials to determine compliance with applicable Federal laws and regulations. This report may also be disclosed upon request to any requesting person +in accordance with sections 105 and 402(b)(1) of the Act or as otherwise authorized by law. You may inspect applications for public access of your own form upon request. Additional +disclosures of the information on this report may be made: (1) to any requesting person, subject to the limitation contained in section 208(d)(1) of title 18, any determination granting an +exemption pursuant to sections 208(b)(1) and 208(b)(3) of title 18; (2) to a Federal, State, or local law enforcement agency if the disclosing agency becomes aware of violations or potential +violations of law or regulation; (3) to another Federal agency, court or party in a court or Federal administrative proceeding when the Government is a party or in order to comply with +a judge -issued subpoena; (4) to a source when necessary to obtain information relevant to a conflict of interest investigation or determination; (5) to the National Archives and Records +Administration or the General Services Administration in records management inspections; (6) to the Office of Management and Budget during legislative coordination on private relief +legislation; (7) to the Department of Justice or in certain legal proceedings when the disclosing agency, an employee of the disclosing agency, or the United States is a party to litigation +or has an interest in the litigation and the use of such records is deemed relevant and necessary to the litigation; (8) to reviewing officials in a new office, department or agency when an +employee transfers or is detailed from one covered position to another; (9) to a Member of Congress or a congressional office in response to an inquiry made on behalf of an individual who +is the subject of the record; (10) to contractors and other non -Government employees working on a contract, service or assignment for the Federal Government when necessary to accomplish +a function related to an OGE Government -wide system of records; and (11) on the OGE Website and to any person, department or agency, any written ethics agreement filed with OGE by an +individual nominated by the President to a position requiring Senate confirmation. See also the OGE/GOVT-1 executive branch -wide Privacy Act system of records. + +Public Burden Information + +This collection of information is estimated to take an average of three hours per response, including time for reviewing the instructions, gathering the data needed, and completing the form. +Send comments regarding the burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to the Program Counsel, U.S. Office of +Government Ethics (OGE), Suite 500, 1201 New York Avenue, NW., Washington, DC 20005-3917. +Pursuant to the Paperwork Reduction Act, as amended, an agency may not conduct or sponsor, and no person is required to respond to, a collection of information unless it displays a +currently valid OMB control number (that number, 3209-0001, is displayed here and at the top of the first page of this OGE Form 278e).","[{""label"": ""Description"", ""start"": 1944, ""end"": 1968}, {""label"": ""Value"", ""start"": 1972, ""end"": 1989}, {""label"": ""Amount"", ""start"": 1990, ""end"": 2014}]" diff --git a/src/test/data/us_doi.tiff b/src/test/data/us_doi.tiff new file mode 100644 index 0000000..736017b Binary files /dev/null and b/src/test/data/us_doi.tiff differ diff --git a/src/test/java/com/indico/LibraryTest.java b/src/test/java/com/indico/LibraryTest.java index 0097242..4697e02 100644 --- a/src/test/java/com/indico/LibraryTest.java +++ b/src/test/java/com/indico/LibraryTest.java @@ -1,4 +1,4 @@ -package com.indico; +/*package com.indico; import com.indico.entity.ModelGroup; import com.indico.jobs.Job; @@ -60,3 +60,4 @@ void testPredict() { Assert.assertEquals("test_value", result.getJSONObject(0).getString("test_key")); } } +*/ \ No newline at end of file diff --git a/src/test/java/com/indico/Setup.java b/src/test/java/com/indico/Setup.java index 45a6642..a13d610 100644 --- a/src/test/java/com/indico/Setup.java +++ b/src/test/java/com/indico/Setup.java @@ -1,4 +1,4 @@ -package com.indico; +/*package com.indico; import java.io.IOException; import org.json.JSONArray; @@ -136,3 +136,4 @@ private HttpRequest getRequest(String operationName) { .withHeader("Authorization", "Bearer DemoRefreshToken"); } } +*/ \ No newline at end of file diff --git a/src/test/java/com/indico/main.java b/src/test/java/com/indico/main.java new file mode 100644 index 0000000..a72ae8e --- /dev/null +++ b/src/test/java/com/indico/main.java @@ -0,0 +1,150 @@ +package com.indico; + +import com.indico.entity.ModelGroup; +import com.indico.entity.Submission; + +import com.indico.mutation.DocumentExtraction; +import com.indico.mutation.UpdateSubmission; +import com.indico.mutation.WorkflowSubmission; +import com.indico.query.GetSubmission; +import com.indico.query.Job; +import com.indico.query.ListSubmissions; +import com.indico.query.ModelGroupQuery; +import com.indico.storage.Blob; +import com.indico.storage.RetrieveBlob; +import com.indico.type.JobStatus; +import com.indico.type.SubmissionStatus; + +import java.util.ArrayList; +import java.util.List; +import java.util.concurrent.CompletionException; + + +public class main { + + public static IndicoKtorClient client; + private static String token_path = "./"; + + public static void main(String args[]) throws Exception { + + Integer workflow_id = 16575; + /** + * Set up client + */ + String host = "dev.indico.io"; + IndicoConfig config = new IndicoConfig.Builder().host(host) + .protocol("https") + .tokenPath(token_path) + .connectionReadTimeout(60) + .connectionWriteTimeout(60) + .maxRetries(5) + .connectTimeout(0) + .build(); + client = new IndicoKtorClient(config); + + /** + * Submit to workflow + */ + WorkflowSubmission submitFile = client.workflowSubmission(); + List files = new ArrayList(); + files.add("/home/mcahill/indico/indico-client-java2/src/test/data/pdf0.pdf"); + List ids = submitFile.files(files) + .workflowId(16575) + .execute(); + + for(Integer id : ids){ + System.out.println(id); + } + GetSubmission submission = client.getSubmission(); + submission.submissionId(ids.get(0)); + Submission result = submission.query(); + while(result.status != SubmissionStatus.COMPLETE && result.status != SubmissionStatus.FAILED){ + result = submission.query(); + System.out.println(result.status); + } + System.out.println("Submission result:" + result.status); + + if(result.status == SubmissionStatus.COMPLETE) { + System.out.println("Processing...."); + process_result(result, client); + } + + + + /** + * Submit to document extraction + */ + DocumentExtraction docEx = client.documentExtraction(); + docEx.files(files); + List jobs = docEx.execute(); + Job job = jobs.get(0); + while(job.status() == JobStatus.PENDING) + { + job.status(); + } + System.out.println("Doc extraction: " + job.status()); + System.out.println(job.resultAsString()); + + System.exit(0); + + } + + public static void process_result(Submission submission, IndicoClient indicoClient) throws Exception { + Blob blob = null; + try { + String url = "https://dev.indico.io/"+submission.resultFile; + RetrieveBlob ret_storage_obj = indicoClient.retrieveBlob(); + ret_storage_obj.url(url); + blob = ret_storage_obj.execute(); + blob.close(); + UpdateSubmission update_sub = indicoClient.updateSubmission(); + update_sub.submissionId(submission.id); + update_sub.retrieved(true); + update_sub.execute(); + + }catch (CompletionException ex){ + System.out.println("Failed to update sub..."); + ex.printStackTrace(); + }finally{ + if(blob != null){ + blob.close(); + } + } + + } +} + + +/* +package com.indico + +import com.indico.graphql.* +import com.indico.IndicoKtorClient +import com.indico.IndicoConfig +import com.indico.main +import com.indico.query.ListSubmissions +import kotlinx.coroutines.runBlocking + + +fun main() { + val client: IndicoKtorClient + val token_path = "./" + val workflow_id = 16575 + val host = "dev.indico.io" + val config = IndicoConfig.Builder().host(host) + .protocol("https") + .tokenPath(token_path) + .connectionReadTimeout(60) + .connectionWriteTimeout(60) + .maxRetries(5) + .connectTimeout(0) + .build() + client = IndicoKtorClient(config) + val query = client.listSubmissions() + val result = query!!.query() + for (sub in result) { + println(sub.id) + } + } + + */ \ No newline at end of file diff --git a/update-schema.sh b/update-schema.sh index ef5b2bc..fc0da88 100755 --- a/update-schema.sh +++ b/update-schema.sh @@ -1,13 +1,14 @@ #fetch and update the schema -#snap install jq && snap install node +#snap install jq +#must have gradle 7 or above to run REFRESH_TOKEN=$(<~/indico_api_token.txt) PROJ=./ -TOKEN=$(curl --location --request POST 'https://dev.indico.io/auth/users/refresh_token' \ +TOKEN=$(curl --location --request POST 'https://app.indico.io/auth/users/refresh_token' \ --header "Authorization: Bearer $REFRESH_TOKEN" \ | jq .auth_token \ | tr -d '"') -npx apollo schema:download --endpoint=https://dev.indico.io/graph/api/graphql schema.json --header="Authorization: Bearer $TOKEN" +./gradlew -PgraphQlToken=$TOKEN graphqlIntrospectSchema --stacktrace