From 63d2e4c2f5742bd6dc9acc14d25982390bdb5209 Mon Sep 17 00:00:00 2001 From: Erik Schultink Date: Tue, 19 Nov 2024 11:26:40 -0800 Subject: [PATCH 01/15] drop scope concept from most places; support for legacy pseudonyms --- .idea/compiler.xml | 8 +-- .../psoxy/PseudonymizedIdentity.java | 36 ------------- .../co/worklytics/psoxy/Pseudonymizer.java | 6 --- .../worklytics/psoxy/PseudonymizerImpl.java | 33 +----------- .../psoxy/PseudonymizerImplFactory.java | 4 +- .../psoxy/gateway/ProxyConfigProperty.java | 5 -- .../impl/ColumnarBulkDataSanitizerImpl.java | 19 +------ .../psoxy/PseudonymizedIdentityTest.java | 54 ------------------- .../psoxy/PseudonymizerImplFactoryTest.java | 19 ------- .../psoxy/PseudonymizerImplTest.java | 3 -- .../gateway/ProxyConfigPropertyTest.java | 3 -- .../impl/CommonRequestHandlerTest.java | 1 - .../psoxy/impl/RESTApiSanitizerImplTest.java | 10 ---- .../psoxy/rules/RulesBaseTestCase.java | 1 - .../impl/BulkDataSanitizerImplTest.java | 51 ++---------------- .../test/resources/rules/csv-pipeline.yaml | 2 +- .../rules/transforms/FieldTransform.java | 1 + .../gateway/rules/ColumnarRulesTest.java | 4 +- 18 files changed, 16 insertions(+), 244 deletions(-) diff --git a/.idea/compiler.xml b/.idea/compiler.xml index 1f592388e..90d702844 100644 --- a/.idea/compiler.xml +++ b/.idea/compiler.xml @@ -7,6 +7,10 @@ + + + + @@ -39,10 +43,6 @@ - - - - diff --git a/java/core/src/main/java/co/worklytics/psoxy/PseudonymizedIdentity.java b/java/core/src/main/java/co/worklytics/psoxy/PseudonymizedIdentity.java index b5f21279d..7849193c1 100644 --- a/java/core/src/main/java/co/worklytics/psoxy/PseudonymizedIdentity.java +++ b/java/core/src/main/java/co/worklytics/psoxy/PseudonymizedIdentity.java @@ -4,10 +4,6 @@ import com.avaulta.gateway.pseudonyms.impl.UrlSafeTokenPseudonymEncoder; import com.fasterxml.jackson.annotation.JsonInclude; import lombok.*; -import org.apache.commons.lang3.StringUtils; - -import java.nio.charset.StandardCharsets; -import java.util.Base64; /** * pseudonymized form of an account identifier @@ -19,25 +15,6 @@ @Data public class PseudonymizedIdentity { - public static final String EMAIL_SCOPE = "email"; - - - /** - * scope of the identity; eg, 'email', 'slack', etc. - * - * identity is considered unique within its scope. - * - * arguably, 'scope' is another tier of 'domain' - * - * NOTE: `null` scope means scope is implicit from identifier's context - * - * @deprecated stop sending this. consumers should infer scopes based on context - */ - @Deprecated //will be removed in v0.4; infer from context - @JsonInclude(JsonInclude.Include.NON_NULL) - String scope; - - /** * some sort of organizational domain, if and only if identifier has an immutable 1:1 * association with the domain. @@ -61,19 +38,6 @@ public class PseudonymizedIdentity { */ String hash; - /** - * future-use. 0.4 hash for pseudonym, if `hash` is NOT 0.4. - * - * in the future, will be filled for LEGACY (0.3) cases; but for now, will be null (and always - * absent from JSON-serialized form) - * - * this will give both DEFAULT and LEGACY hashes for pseudonyms, allowing for eventual migration - * of LEGACY customers to DEFAULT (0.4) - * - */ - @JsonInclude(JsonInclude.Include.NON_NULL) - String h_4; - @JsonInclude(JsonInclude.Include.NON_NULL) String original; diff --git a/java/core/src/main/java/co/worklytics/psoxy/Pseudonymizer.java b/java/core/src/main/java/co/worklytics/psoxy/Pseudonymizer.java index 97beaf390..9b56e9209 100644 --- a/java/core/src/main/java/co/worklytics/psoxy/Pseudonymizer.java +++ b/java/core/src/main/java/co/worklytics/psoxy/Pseudonymizer.java @@ -26,12 +26,6 @@ class ConfigurationOptions implements Serializable { @Deprecated //used ONLY in LEGACY case ; otherwise behavior determined by tokenization strategies String pseudonymizationSalt; - /** - * scope to use where logic + rules don't imply a match - */ - @Deprecated - String defaultScopeId; - @Builder.Default PseudonymImplementation pseudonymImplementation = PseudonymImplementation.DEFAULT; diff --git a/java/core/src/main/java/co/worklytics/psoxy/PseudonymizerImpl.java b/java/core/src/main/java/co/worklytics/psoxy/PseudonymizerImpl.java index d2637b1bb..eeeb445ce 100644 --- a/java/core/src/main/java/co/worklytics/psoxy/PseudonymizerImpl.java +++ b/java/core/src/main/java/co/worklytics/psoxy/PseudonymizerImpl.java @@ -1,7 +1,6 @@ package co.worklytics.psoxy; import com.avaulta.gateway.pseudonyms.Pseudonym; -import com.avaulta.gateway.pseudonyms.PseudonymImplementation; import com.avaulta.gateway.pseudonyms.impl.UrlSafeTokenPseudonymEncoder; import com.avaulta.gateway.rules.transforms.Transform; import com.avaulta.gateway.tokens.DeterministicTokenizationStrategy; @@ -12,7 +11,6 @@ import dagger.assisted.AssistedInject; import lombok.Getter; import lombok.NoArgsConstructor; -import lombok.NonNull; import lombok.extern.java.Log; import org.apache.commons.lang3.StringUtils; import org.hazlewood.connor.bottema.emailaddress.EmailAddressCriteria; @@ -40,7 +38,6 @@ public class PseudonymizerImpl implements Pseudonymizer { Base64.Encoder encoder = Base64.getUrlEncoder().withoutPadding(); - //TODO: what if options conflict w dependencies?? @Getter ConfigurationOptions options; @@ -102,7 +99,6 @@ public PseudonymizedIdentity pseudonymize(Object value, Transform.Pseudonymizati PseudonymizedIdentity.PseudonymizedIdentityBuilder builder = PseudonymizedIdentity.builder(); - String scope; //q: this auto-detect a good idea? Or invert control and let caller specify with a header // or something?? //NOTE: use of EmailAddressValidator/Parser here is probably overly permissive, as there @@ -115,40 +111,27 @@ public PseudonymizedIdentity pseudonymize(Object value, Transform.Pseudonymizati canonicalization = this::emailCanonicalization; domain = EmailAddressParser.getDomain((String) value, EmailAddressCriteria.RECOMMENDED, true); builder.domain(domain); - scope = PseudonymizedIdentity.EMAIL_SCOPE; //q: do something with the personal name?? // NO --> it is not going to be reliable (except for From, will fill with whatever // sender has for the person in their Contacts), and in enterprise use-cases we // shouldn't need it for matching } else { canonicalization = Function.identity(); - scope = getOptions().getDefaultScopeId(); } - builder.scope(StringUtils.trimToNull(scope)); - - byte[] hashWithDefaultImpl = deterministicTokenizationStrategy.getToken(value.toString(), canonicalization); // encoded hash will be filled based on customer's config; may NOT simply be encoding of // hashWithDefaultImpl - String encodedHash; - if (getOptions().getPseudonymImplementation() == PseudonymImplementation.LEGACY) { - encodedHash = hashUtils.hash(canonicalization.apply(value.toString()), - getOptions().getPseudonymizationSalt(), asLegacyScope(scope)); - } else if (getOptions().getPseudonymImplementation() == PseudonymImplementation.DEFAULT) { - encodedHash = encoder.encodeToString(hashWithDefaultImpl); - } else { - throw new RuntimeException("Unsupported pseudonym implementation: " + getOptions().getPseudonymImplementation()); - } + String encodedHash = encoder.encodeToString(hashWithDefaultImpl); builder.hash(encodedHash); if (transformOptions.getIncludeReversible()) { builder.reversible(urlSafePseudonymEncoder.encode( Pseudonym.builder() - .hash(hashWithDefaultImpl) //reversibles have ALWAYS relied on the v4 default impl + .hash(hashWithDefaultImpl) .reversible(reversibleTokenizationStrategy.getReversibleToken(value.toString(), canonicalization)) .domain(domain) .build())); @@ -158,22 +141,10 @@ public PseudonymizedIdentity pseudonymize(Object value, Transform.Pseudonymizati builder.original(Objects.toString(value)); } - // for LEGACY case, fill DEFAULT pseudonym in h_4, to enable future migration by client - // (eg, send both DEFAULT + LEGACY) - if (getOptions().getPseudonymImplementation() == PseudonymImplementation.LEGACY) { - builder.h_4(encoder.encodeToString(hashWithDefaultImpl)); - } - return builder.build(); } boolean duckTypesAsEmails(Object value) { return value instanceof String && EmailAddressValidator.isValid((String) value); } - - //converts 'scope' to legacy value (eg, equivalents to original Worklytics scheme, where no scope - // meant 'email' - private String asLegacyScope(@NonNull String scope) { - return scope.equals(PseudonymizedIdentity.EMAIL_SCOPE) ? "" : scope; - } } diff --git a/java/core/src/main/java/co/worklytics/psoxy/PseudonymizerImplFactory.java b/java/core/src/main/java/co/worklytics/psoxy/PseudonymizerImplFactory.java index 4fcd0fc69..0eeab7867 100644 --- a/java/core/src/main/java/co/worklytics/psoxy/PseudonymizerImplFactory.java +++ b/java/core/src/main/java/co/worklytics/psoxy/PseudonymizerImplFactory.java @@ -16,9 +16,7 @@ default Pseudonymizer.ConfigurationOptions buildOptions(ConfigService config, String defaultScopeIdForSource) { Pseudonymizer.ConfigurationOptions.ConfigurationOptionsBuilder builder = Pseudonymizer.ConfigurationOptions.builder() .pseudonymizationSalt(secretStore.getConfigPropertyAsOptional(ProxyConfigProperty.PSOXY_SALT) - .orElseThrow(() -> new Error("Must configure value for SALT to generate pseudonyms"))) - .defaultScopeId(config.getConfigPropertyAsOptional(ProxyConfigProperty.IDENTIFIER_SCOPE_ID) - .orElse(defaultScopeIdForSource)); + .orElseThrow(() -> new Error("Must configure value for SALT to generate pseudonyms"))); config.getConfigPropertyAsOptional(ProxyConfigProperty.PSEUDONYM_IMPLEMENTATION) .map(PseudonymImplementation::parseConfigPropertyValue) diff --git a/java/core/src/main/java/co/worklytics/psoxy/gateway/ProxyConfigProperty.java b/java/core/src/main/java/co/worklytics/psoxy/gateway/ProxyConfigProperty.java index 1ee155410..9efcf4d51 100644 --- a/java/core/src/main/java/co/worklytics/psoxy/gateway/ProxyConfigProperty.java +++ b/java/core/src/main/java/co/worklytics/psoxy/gateway/ProxyConfigProperty.java @@ -44,11 +44,6 @@ public enum ProxyConfigProperty implements ConfigService.ConfigProperty { ENCRYPTION_KEY_IP(false), - - @Deprecated //removed from v0.5 - IDENTIFIER_SCOPE_ID, - - PSOXY_SALT(false), SALT_IP(false), // used to salt IP; distinct value so can independently rotate IP salt from primary salt diff --git a/java/core/src/main/java/co/worklytics/psoxy/storage/impl/ColumnarBulkDataSanitizerImpl.java b/java/core/src/main/java/co/worklytics/psoxy/storage/impl/ColumnarBulkDataSanitizerImpl.java index 02112975b..c679b49cc 100644 --- a/java/core/src/main/java/co/worklytics/psoxy/storage/impl/ColumnarBulkDataSanitizerImpl.java +++ b/java/core/src/main/java/co/worklytics/psoxy/storage/impl/ColumnarBulkDataSanitizerImpl.java @@ -6,7 +6,6 @@ import co.worklytics.psoxy.storage.BulkDataSanitizer; import co.worklytics.psoxy.utils.ProcessingBuffer; import com.avaulta.gateway.pseudonyms.PseudonymEncoder; -import com.avaulta.gateway.pseudonyms.PseudonymImplementation; import com.avaulta.gateway.pseudonyms.impl.Base64UrlSha256HashPseudonymEncoder; import com.avaulta.gateway.pseudonyms.impl.UrlSafeTokenPseudonymEncoder; import com.avaulta.gateway.rules.ColumnarRules; @@ -194,7 +193,6 @@ public void sanitize(@NonNull Reader reader, TriFunction pseudonymizationFunction = buildPseudonymizationFunction(rules); - Map pseudonymizers = new HashMap<>(); BiFunction applyTransform = (originalValue, pipeline) -> { String value = originalValue; for ( FieldTransform transform : pipeline.getTransforms()) { @@ -216,13 +214,7 @@ public void sanitize(@NonNull Reader reader, } if (transform instanceof FieldTransform.PseudonymizeWithScope) { - Pseudonymizer scopedPseudonymizer = pseudonymizer; - if (pseudonymizer.getOptions().getPseudonymImplementation() == PseudonymImplementation.LEGACY) { - scopedPseudonymizer = pseudonymizers.computeIfAbsent( - ((FieldTransform.PseudonymizeWithScope) transform).getPseudonymizeWithScope(), - scope -> pseudonymizerImplFactory.create(pseudonymizer.getOptions().withDefaultScopeId(scope))); - } - value = pseudonymizationFunction.apply(value, pipeline.getNewName(), scopedPseudonymizer); + throw new UnsupportedOperationException("PseudonymizeWithScope is no longer supported in v0.5+ of proxy"); } if (transform instanceof FieldTransform.JavaRegExpReplace) { @@ -430,14 +422,7 @@ TriFunction buildPseudonymizationFunction //this shouldn't happen, bc ColumnarRules don't support preserving original log.warning("Encoding pseudonym for column '" + outputColumnName + "' using format that will not include the 'original' value, althought transformation preserved it"); } - if (localPseudonymizer.getOptions().getPseudonymImplementation() == PseudonymImplementation.LEGACY) { - if (identity.getReversible() != null) { - throw new Error("Cannot encode legacy PseudonymizedIdentity with reversibles as URL_SAFE_TOKEN"); - } - return urlSafeTokenPseudonymEncoder.encode(identity.fromLegacy()); - } else { - return urlSafeTokenPseudonymEncoder.encode(identity.asPseudonym()); - } + return urlSafeTokenPseudonymEncoder.encode(identity.asPseudonym()); } else if (rules.getPseudonymFormat() == PseudonymEncoder.Implementations.URL_SAFE_HASH_ONLY) { return base64UrlSha256HashPseudonymEncoder.encode(identity.asPseudonym()); } else { diff --git a/java/core/src/test/java/co/worklytics/psoxy/PseudonymizedIdentityTest.java b/java/core/src/test/java/co/worklytics/psoxy/PseudonymizedIdentityTest.java index 63bea9d2d..4570084af 100644 --- a/java/core/src/test/java/co/worklytics/psoxy/PseudonymizedIdentityTest.java +++ b/java/core/src/test/java/co/worklytics/psoxy/PseudonymizedIdentityTest.java @@ -62,7 +62,6 @@ public void setup() { void asPseudonym() { pseudonymizer = pseudonymizerImplFactory.create(Pseudonymizer.ConfigurationOptions.builder() .pseudonymizationSalt("salt") - .defaultScopeId("scope") .pseudonymImplementation(PseudonymImplementation.DEFAULT) .build()); @@ -83,7 +82,6 @@ void asPseudonym() { void asPseudonym_should_return_null_if_null_or_empty(String identifier) { pseudonymizer = pseudonymizerImplFactory.create(Pseudonymizer.ConfigurationOptions.builder() .pseudonymizationSalt("salt") - .defaultScopeId("scope") .pseudonymImplementation(PseudonymImplementation.DEFAULT) .build()); @@ -96,7 +94,6 @@ void asPseudonym_should_return_null_if_null_or_empty(String identifier) { void asPseudonym_reversible() { pseudonymizer = pseudonymizerImplFactory.create(Pseudonymizer.ConfigurationOptions.builder() .pseudonymizationSalt("salt") - .defaultScopeId("scope") .pseudonymImplementation(PseudonymImplementation.DEFAULT) .build()); @@ -123,55 +120,4 @@ void asPseudonym_reversible() { urlSafeTokenPseudonymEncoder.decode(pseudonymizedIdentity.getReversible()).getHash()); } - @Test - void asPseudonym_legacy() { - pseudonymizer = pseudonymizerImplFactory.create(Pseudonymizer.ConfigurationOptions.builder() - .pseudonymizationSalt("salt") - .defaultScopeId("scope") - .pseudonymImplementation(PseudonymImplementation.LEGACY) - .build()); - - PseudonymizedIdentity pseudonymizedIdentity = pseudonymizer.pseudonymize("alice@acme.com"); - - Pseudonym pseudonym = pseudonymizedIdentity.fromLegacy(); - - assertEquals(Base64.getUrlEncoder().withoutPadding().encodeToString(pseudonym.getHash()), - pseudonymizedIdentity.getHash()); - } - - @Test - void asPseudonym_reversible_legacy() { - pseudonymizer = pseudonymizerImplFactory.create(Pseudonymizer.ConfigurationOptions.builder() - .pseudonymizationSalt("salt") - .defaultScopeId("scope") - .pseudonymImplementation(PseudonymImplementation.LEGACY) - .build()); - - PseudonymizedIdentity pseudonymizedIdentity - = pseudonymizer.pseudonymize("alice@acme.com", Transform.Pseudonymize.builder() - .includeReversible(true) - .build()); - - assertEquals("UFdK0TvVTvZ23c6QslyCy0o2MSq2DRtDjEXfTPJyyMk", - pseudonymizedIdentity.getHash()); - - PseudonymizedIdentity notReversible = - pseudonymizer.pseudonymize("alice@acme.com", Transform.Pseudonymize.builder() - .includeReversible(false) - .build()); - - // round trip from legacy should now be working OK, even with reversible - Pseudonym pseudonym = pseudonymizedIdentity.fromLegacy(); - - assertEquals(Base64.getUrlEncoder().withoutPadding().encodeToString(pseudonym.getHash()), - pseudonymizedIdentity.getHash()); - - assertEquals(Base64.getUrlEncoder().withoutPadding().encodeToString(pseudonym.getHash()), - notReversible.getHash()); - - // hash on the reversible is NOT equal to the hash for the legacy pseudonyms - UrlSafeTokenPseudonymEncoder urlSafeTokenPseudonymEncoder = new UrlSafeTokenPseudonymEncoder(); - assertNotEquals(pseudonymizedIdentity.getHash(), - urlSafeTokenPseudonymEncoder.decode(pseudonymizedIdentity.getReversible()).getHash()); - } } diff --git a/java/core/src/test/java/co/worklytics/psoxy/PseudonymizerImplFactoryTest.java b/java/core/src/test/java/co/worklytics/psoxy/PseudonymizerImplFactoryTest.java index e816fc7db..ac7fd6c6d 100644 --- a/java/core/src/test/java/co/worklytics/psoxy/PseudonymizerImplFactoryTest.java +++ b/java/core/src/test/java/co/worklytics/psoxy/PseudonymizerImplFactoryTest.java @@ -43,23 +43,4 @@ public PseudonymizerImpl create(Pseudonymizer.ConfigurationOptions configuration } } - @ValueSource( - strings = { - "", - "from-rules" - } - ) - @ParameterizedTest - public void testBuildOptions_configuredScopeOverRules(String valueFromRules) { - // config value IDENTIFIER_SCOPE_ID should always take precedence - when(configService.getConfigPropertyAsOptional(ProxyConfigProperty.IDENTIFIER_SCOPE_ID)) - .thenReturn(Optional.of("from-config")); - - Pseudonymizer.ConfigurationOptions options = - factory.buildOptions(configService, secretStore, StringUtils.trimToNull(valueFromRules)); - - - assertEquals("from-config", options.getDefaultScopeId()); - } - } diff --git a/java/core/src/test/java/co/worklytics/psoxy/PseudonymizerImplTest.java b/java/core/src/test/java/co/worklytics/psoxy/PseudonymizerImplTest.java index 5d5bfe150..e798706a3 100644 --- a/java/core/src/test/java/co/worklytics/psoxy/PseudonymizerImplTest.java +++ b/java/core/src/test/java/co/worklytics/psoxy/PseudonymizerImplTest.java @@ -55,7 +55,6 @@ public void setup() { pseudonymizer = pseudonymizerImplFactory.create(Pseudonymizer.ConfigurationOptions.builder() .pseudonymizationSalt("salt") - .defaultScopeId("scope") .pseudonymImplementation(PseudonymImplementation.DEFAULT) .build()); @@ -102,7 +101,6 @@ void emailCanonicalEquivalents(String mailHeaderValue) { void emailCanonicalEquivalents_IgnoreDots(String mailHeaderValue) { pseudonymizer = pseudonymizerImplFactory.create(Pseudonymizer.ConfigurationOptions.builder() .pseudonymizationSalt("salt") - .defaultScopeId("scope") .pseudonymImplementation(PseudonymImplementation.DEFAULT) .emailCanonicalization(EmailCanonicalization.IGNORE_DOTS) .build()); @@ -135,7 +133,6 @@ void hashMatchesLegacy() { pseudonymizer = pseudonymizerImplFactory.create(Pseudonymizer.ConfigurationOptions.builder() .pseudonymizationSalt("salt") - .defaultScopeId("scope") .pseudonymImplementation(PseudonymImplementation.LEGACY) .build()); diff --git a/java/core/src/test/java/co/worklytics/psoxy/gateway/ProxyConfigPropertyTest.java b/java/core/src/test/java/co/worklytics/psoxy/gateway/ProxyConfigPropertyTest.java index f15fa08be..6866a2e20 100644 --- a/java/core/src/test/java/co/worklytics/psoxy/gateway/ProxyConfigPropertyTest.java +++ b/java/core/src/test/java/co/worklytics/psoxy/gateway/ProxyConfigPropertyTest.java @@ -1,6 +1,5 @@ package co.worklytics.psoxy.gateway; -import org.junit.jupiter.api.Test; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.ValueSource; @@ -9,7 +8,6 @@ class ProxyConfigPropertyTest { - @ValueSource( strings = { "PSOXY_ENCRYPTION_KEY", @@ -32,7 +30,6 @@ public void remoteConfigVars(String paramName) { "EMAIL_CANONICALIZATION", "PATH_TO_SHARED_CONFIG", "PATH_TO_INSTANCE_CONFIG", - "IDENTIFIER_SCOPE_ID", } ) @ParameterizedTest diff --git a/java/core/src/test/java/co/worklytics/psoxy/gateway/impl/CommonRequestHandlerTest.java b/java/core/src/test/java/co/worklytics/psoxy/gateway/impl/CommonRequestHandlerTest.java index 44aa058f8..a7d65b1eb 100644 --- a/java/core/src/test/java/co/worklytics/psoxy/gateway/impl/CommonRequestHandlerTest.java +++ b/java/core/src/test/java/co/worklytics/psoxy/gateway/impl/CommonRequestHandlerTest.java @@ -427,7 +427,6 @@ private RESTApiSanitizer buildSanitizer(RESTRules rules) { Pseudonymizer defaultPseudonymizer = pseudonymizerImplFactory.create(Pseudonymizer.ConfigurationOptions.builder() .pseudonymizationSalt("salt") - .defaultScopeId("gapps") .pseudonymImplementation(PseudonymImplementation.LEGACY) .build()); diff --git a/java/core/src/test/java/co/worklytics/psoxy/impl/RESTApiSanitizerImplTest.java b/java/core/src/test/java/co/worklytics/psoxy/impl/RESTApiSanitizerImplTest.java index 601dc1f4e..710d9c4aa 100644 --- a/java/core/src/test/java/co/worklytics/psoxy/impl/RESTApiSanitizerImplTest.java +++ b/java/core/src/test/java/co/worklytics/psoxy/impl/RESTApiSanitizerImplTest.java @@ -104,7 +104,6 @@ public void setup() { Pseudonymizer pseudonymizer = pseudonymizerImplFactory.create(Pseudonymizer.ConfigurationOptions.builder() .pseudonymizationSalt("salt") - .defaultScopeId("scope") .pseudonymImplementation(PseudonymImplementation.LEGACY) .build()); @@ -468,12 +467,6 @@ void pseudonymize_multivalueEmailHeaders(String headerValue) { @CsvSource( value = { - "LEGACY,test,false,URL_SAFE_TOKEN,qdRJIFbPHPza8bRV67W_Fq.SYBn77xdIHll17pXhilo", - "LEGACY,alice@acme.com,false,URL_SAFE_TOKEN,UFdK0TvVTvZ23c6QslyCy0o2MSq2DRtDjEXfTPJyyMk", - //legacy w reversible fail to JSON format!! - "LEGACY,test,true,URL_SAFE_TOKEN,'{\"scope\":\"scope\",\"hash\":\"qdRJIFbPHPza8bRV67W_Fq.SYBn77xdIHll17pXhilo\",\"h_4\":\"Tt8H7clbL9y8ryN4_RLYrCEsKqbjJsWcPmKb4wOdZDI\",\"reversible\":\"p~Tt8H7clbL9y8ryN4_RLYrCEsKqbjJsWcPmKb4wOdZDKAHyevsJLhRTypmrf-DpBZ\"}'", - "LEGACY,alice@acme.com,true,URL_SAFE_TOKEN,'{\"scope\":\"email\",\"domain\":\"acme.com\",\"hash\":\"UFdK0TvVTvZ23c6QslyCy0o2MSq2DRtDjEXfTPJyyMk\",\"h_4\":\"UFdK0TvVTvZ23c6QslyCy0o2MSq2DRtDjEXfTPJyyMk\",\"reversible\":\"p~UFdK0TvVTvZ23c6QslyCy0o2MSq2DRtDjEXfTPJyyMnKYUk8FJevl3wvFyZY0eF-@acme.com\"}'", - // pseudonyms build with DEFAULT implementation always support URL_SAFE_TOKEN encoding "DEFAULT,test,false,URL_SAFE_TOKEN,Tt8H7clbL9y8ryN4_RLYrCEsKqbjJsWcPmKb4wOdZDI", "DEFAULT,test,true,URL_SAFE_TOKEN,p~Tt8H7clbL9y8ryN4_RLYrCEsKqbjJsWcPmKb4wOdZDKAHyevsJLhRTypmrf-DpBZ", @@ -490,11 +483,9 @@ public void getPseudonymize_URL_SAFE_TOKEN(PseudonymImplementation implementatio Pseudonymizer pseudonymizer = pseudonymizerImplFactory.create(Pseudonymizer.ConfigurationOptions.builder() .pseudonymizationSalt("salt") - .defaultScopeId("scope") .pseudonymImplementation(implementation) .build()); - sanitizer = sanitizerFactory.create(PrebuiltSanitizerRules.DEFAULTS.get("gmail"), pseudonymizer); String r = (String) sanitizer.getPseudonymize(Transform.Pseudonymize.builder() @@ -587,7 +578,6 @@ void pseudonymizeWithRegexMatches(String input) { Pseudonymizer pseudonymizer = pseudonymizerImplFactory.create(Pseudonymizer.ConfigurationOptions.builder() .pseudonymizationSalt("salt") - .defaultScopeId("scope") .pseudonymImplementation(PseudonymImplementation.DEFAULT) .build()); diff --git a/java/core/src/test/java/co/worklytics/psoxy/rules/RulesBaseTestCase.java b/java/core/src/test/java/co/worklytics/psoxy/rules/RulesBaseTestCase.java index 218043e63..bc8003694 100644 --- a/java/core/src/test/java/co/worklytics/psoxy/rules/RulesBaseTestCase.java +++ b/java/core/src/test/java/co/worklytics/psoxy/rules/RulesBaseTestCase.java @@ -166,7 +166,6 @@ public void setup() { sanitizer = sanitizerFactory.create(getRulesUnderTest(), pseudonymizerFactory.create(Pseudonymizer.ConfigurationOptions.builder() - .defaultScopeId(getRulesTestSpec().getDefaultScopeId()) .pseudonymImplementation(PseudonymImplementation.DEFAULT) .build())); diff --git a/java/core/src/test/java/co/worklytics/psoxy/storage/impl/BulkDataSanitizerImplTest.java b/java/core/src/test/java/co/worklytics/psoxy/storage/impl/BulkDataSanitizerImplTest.java index 1c2790436..f79c9f7a3 100644 --- a/java/core/src/test/java/co/worklytics/psoxy/storage/impl/BulkDataSanitizerImplTest.java +++ b/java/core/src/test/java/co/worklytics/psoxy/storage/impl/BulkDataSanitizerImplTest.java @@ -105,7 +105,6 @@ public void setup() { pseudonymizer = pseudonymizerImplFactory.create(Pseudonymizer.ConfigurationOptions.builder() .pseudonymizationSalt("salt") - .defaultScopeId("hris") .pseudonymImplementation(PseudonymImplementation.LEGACY) .build()); @@ -321,50 +320,12 @@ void handle_rename() { } } - @Test - @SneakyThrows - void handle_duplicates_legacy() { - Pseudonymizer defaultPseudonymizer = - pseudonymizerImplFactory.create(Pseudonymizer.ConfigurationOptions.builder() - .pseudonymizationSalt("salt") - .defaultScopeId("hris") - .pseudonymImplementation(PseudonymImplementation.LEGACY) - .build()); - - - //this is a lookup-table use case (for customers to use in own data warehouse) - final String EXPECTED = "EMPLOYEE_ID,DEPARTMENT,SNAPSHOT,MANAGER_ID,JOIN_DATE,LEAVE_DATE,EMPLOYEE_ID_ORIG\n" + - "t~SappwO4KZKGprqqUNruNreBD2BVR98nEM6NRCu3R2dM,Engineering,2023-01-06,,2019-11-11,,1\n" + - "t~mfsaNYuCX__xvnRz4gJp_t0zrDTC5DkuCJvMkubugsI,Sales,2023-01-06,t~SappwO4KZKGprqqUNruNreBD2BVR98nEM6NRCu3R2dM,2020-01-01,,2\n" + - "t~-ZdDGUuOMK-Oy7_PJ3pf9SYX12-3tKPdLHfYbjVGcGk,Engineering,2023-01-06,t~SappwO4KZKGprqqUNruNreBD2BVR98nEM6NRCu3R2dM,2019-10-06,2022-12-08,3\n" + - "t~-fs1T64Micz8SkbILrABgEv4kSg-tFhvhP35HGSLdOo,Engineering,2023-01-06,t~SappwO4KZKGprqqUNruNreBD2BVR98nEM6NRCu3R2dM,2018-06-03,,4\n"; - - ColumnarRules rules = ColumnarRules.builder() - .pseudonymFormat(PseudonymEncoder.Implementations.URL_SAFE_TOKEN) - .columnToPseudonymize("EMPLOYEE_ID") - .columnToRedact("EMPLOYEE_EMAIL") - .columnToPseudonymize("MANAGER_ID") - .columnsToDuplicate(Map.of("EMPLOYEE_ID", "EMPLOYEE_ID_ORIG")) - .build(); - columnarFileSanitizerImpl.setRules(rules); - - File inputFile = new File(getClass().getResource("/csv/hris-example.csv").getFile()); - - try (FileReader in = new FileReader(inputFile); - StringWriter out = new StringWriter()) { - columnarFileSanitizerImpl.sanitize(in, out, pseudonymizer); - assertEquals(EXPECTED, out.toString()); - } - } - - @Test @SneakyThrows void handle_duplicates() { Pseudonymizer defaultPseudonymizer = pseudonymizerImplFactory.create(Pseudonymizer.ConfigurationOptions.builder() .pseudonymizationSalt("salt") - .defaultScopeId("hris") .build()); @@ -401,7 +362,6 @@ void handle_duplicates_lookup_table_via_transforms() { Pseudonymizer defaultPseudonymizer = pseudonymizerImplFactory.create(Pseudonymizer.ConfigurationOptions.builder() .pseudonymizationSalt("salt") - .defaultScopeId("hris") .build()); @@ -442,7 +402,6 @@ void handle_duplicates_lookup_table_pre_0_4_48() { Pseudonymizer defaultPseudonymizer = pseudonymizerImplFactory.create(Pseudonymizer.ConfigurationOptions.builder() .pseudonymizationSalt("salt") - .defaultScopeId("hris") .build()); @@ -498,7 +457,6 @@ void acmeExample() { Pseudonymizer defaultPseudonymizer = pseudonymizerImplFactory.create(Pseudonymizer.ConfigurationOptions.builder() .pseudonymizationSalt("salt") - .defaultScopeId("hris") .build()); @@ -570,7 +528,6 @@ void shuffle() { void pre_v0_4_30_bulk_pseudonym_URL_SAFE_TOKEN_ENCODING(String identifier) { pseudonymizer = pseudonymizerImplFactory.create(Pseudonymizer.ConfigurationOptions.builder() .pseudonymizationSalt("salt") - .defaultScopeId("hris") .pseudonymImplementation(PseudonymImplementation.DEFAULT) .build()); @@ -612,7 +569,7 @@ void transform_ghusername() { .transforms(Arrays.asList( FieldTransform.filter("(.*)@.*"), FieldTransform.formatString("%s_enterprise"), - FieldTransform.pseudonymizeWithScope("github") + FieldTransform.pseudonymize(true) )).build())) .build(); columnarFileSanitizerImpl.setRules(rules); @@ -636,7 +593,6 @@ void transform_ghusername() { PseudonymizerImpl githubPseudonymizer = pseudonymizerImplFactory.create(Pseudonymizer.ConfigurationOptions.builder() .pseudonymImplementation(PseudonymImplementation.LEGACY) .pseudonymizationSalt(pseudonymizer.getOptions().getPseudonymizationSalt()) - .defaultScopeId("github") .build()); //validate has _enterprise appended pre-pseudonymization @@ -676,7 +632,7 @@ void transform_complex_ghusername() { //FieldTransform.javaRegExpReplace("(.*)@.*" + FieldTransform.JavaRegExpReplace.SEPARATOR + "$1"), FieldTransform.javaRegExpReplace("([^\\.].*)\\.([^\\.].*)","$1-$2"), //FieldTransform.javaRegExpReplace("([^\\.].*)\\.([^\\.].*)" + FieldTransform.JavaRegExpReplace.SEPARATOR + "$1-$2"), - FieldTransform.pseudonymizeWithScope("github") + FieldTransform.pseudonymize(true) )).build())) .build(); columnarFileSanitizerImpl.setRules(rules); @@ -697,7 +653,6 @@ void transform_complex_ghusername() { PseudonymizerImpl githubPseudonymizer = pseudonymizerImplFactory.create(Pseudonymizer.ConfigurationOptions.builder() .pseudonymImplementation(PseudonymImplementation.LEGACY) .pseudonymizationSalt(pseudonymizer.getOptions().getPseudonymizationSalt()) - .defaultScopeId("github") .build()); // plain 'usernames' hash shouldn't be there either @@ -859,7 +814,7 @@ public PseudonymizedIdentity pseudonymize(Object identifier, Transform.Pseudonym @Override public ConfigurationOptions getOptions() { - return ConfigurationOptions.builder().defaultScopeId("hris").build(); + return ConfigurationOptions.builder().build(); } } diff --git a/java/core/src/test/resources/rules/csv-pipeline.yaml b/java/core/src/test/resources/rules/csv-pipeline.yaml index 904f867c8..949943c1a 100644 --- a/java/core/src/test/resources/rules/csv-pipeline.yaml +++ b/java/core/src/test/resources/rules/csv-pipeline.yaml @@ -8,4 +8,4 @@ fieldsToTransform: transforms: - filter: "(.*)@.*" - formatString: "%s_acme" - - pseudonymizeWithScope: "github" + - pseudonymize: true diff --git a/java/gateway-core/src/main/java/com/avaulta/gateway/rules/transforms/FieldTransform.java b/java/gateway-core/src/main/java/com/avaulta/gateway/rules/transforms/FieldTransform.java index d56c46af1..87ce16a96 100644 --- a/java/gateway-core/src/main/java/com/avaulta/gateway/rules/transforms/FieldTransform.java +++ b/java/gateway-core/src/main/java/com/avaulta/gateway/rules/transforms/FieldTransform.java @@ -211,6 +211,7 @@ public boolean isValid() { @NoArgsConstructor @SuperBuilder(toBuilder = true) @Data + @Deprecated class PseudonymizeWithScope implements FieldTransform { @NonNull diff --git a/java/gateway-core/src/test/java/com/avaulta/gateway/rules/ColumnarRulesTest.java b/java/gateway-core/src/test/java/com/avaulta/gateway/rules/ColumnarRulesTest.java index 535b8a928..76b80d233 100644 --- a/java/gateway-core/src/test/java/com/avaulta/gateway/rules/ColumnarRulesTest.java +++ b/java/gateway-core/src/test/java/com/avaulta/gateway/rules/ColumnarRulesTest.java @@ -112,7 +112,7 @@ public void yaml_pipeline() { .transforms(Arrays.asList( FieldTransform.filter(".*@worklytics.co"), FieldTransform.formatString("%s_gh"), - FieldTransform.pseudonymizeWithScope("github") + FieldTransform.pseudonymize(true) )).build())) .build(); @@ -124,7 +124,7 @@ public void yaml_pipeline() { " transforms:\n" + " - filter: \".*@worklytics.co\"\n" + " - formatString: \"%s_gh\"\n" + - " - pseudonymizeWithScope: \"github\"\n" + + " - pseudonymize: true\n" + "pseudonymFormat: \"JSON\"\n"; assertEquals(yaml, From d72790ac2845eb556890321859ecf84b19e49e1a Mon Sep 17 00:00:00 2001 From: Erik Schultink Date: Tue, 19 Nov 2024 12:07:54 -0800 Subject: [PATCH 02/15] remove LEGACY pseudonym implementation --- .../psoxy/PseudonymizerImplFactory.java | 17 +++++-- .../java/co/worklytics/psoxy/PsoxyModule.java | 23 +-------- .../gateway/impl/CommonRequestHandler.java | 5 +- .../co/worklytics/psoxy/rules/RESTRules.java | 2 - .../co/worklytics/psoxy/rules/RuleSet.java | 2 - .../co/worklytics/psoxy/rules/Rules2.java | 14 +----- .../co/worklytics/psoxy/rules/RulesUtils.java | 49 +------------------ .../psoxy/PseudonymizerImplTest.java | 20 -------- .../psoxy/impl/RESTApiSanitizerImplTest.java | 1 - .../impl/BulkDataSanitizerImplTest.java | 3 -- .../pseudonyms/PseudonymImplementation.java | 1 + .../avaulta/gateway/rules/ColumnarRules.java | 2 +- 12 files changed, 21 insertions(+), 118 deletions(-) diff --git a/java/core/src/main/java/co/worklytics/psoxy/PseudonymizerImplFactory.java b/java/core/src/main/java/co/worklytics/psoxy/PseudonymizerImplFactory.java index 0eeab7867..ac43d53f1 100644 --- a/java/core/src/main/java/co/worklytics/psoxy/PseudonymizerImplFactory.java +++ b/java/core/src/main/java/co/worklytics/psoxy/PseudonymizerImplFactory.java @@ -6,22 +6,31 @@ import com.avaulta.gateway.pseudonyms.PseudonymImplementation; import dagger.assisted.AssistedFactory; +import java.util.Optional; + @AssistedFactory public interface PseudonymizerImplFactory { PseudonymizerImpl create(Pseudonymizer.ConfigurationOptions configurationOptions); default Pseudonymizer.ConfigurationOptions buildOptions(ConfigService config, - SecretStore secretStore, - String defaultScopeIdForSource) { + SecretStore secretStore) { Pseudonymizer.ConfigurationOptions.ConfigurationOptionsBuilder builder = Pseudonymizer.ConfigurationOptions.builder() .pseudonymizationSalt(secretStore.getConfigPropertyAsOptional(ProxyConfigProperty.PSOXY_SALT) .orElseThrow(() -> new Error("Must configure value for SALT to generate pseudonyms"))); - config.getConfigPropertyAsOptional(ProxyConfigProperty.PSEUDONYM_IMPLEMENTATION) - .map(PseudonymImplementation::parseConfigPropertyValue) + Optional pseudonymImplementation = config.getConfigPropertyAsOptional(ProxyConfigProperty.PSEUDONYM_IMPLEMENTATION) + .map(PseudonymImplementation::parseConfigPropertyValue); + + pseudonymImplementation .ifPresent(builder::pseudonymImplementation); + pseudonymImplementation.ifPresent(impl -> { + if (impl == PseudonymImplementation.LEGACY) { + throw new IllegalArgumentException("LEGACY pseudonymization is no longer supported with v0.5+"); + } + }); + config.getConfigPropertyAsOptional(ProxyConfigProperty.EMAIL_CANONICALIZATION) .map(EmailCanonicalization::parseConfigPropertyValue) .ifPresent(builder::emailCanonicalization); diff --git a/java/core/src/main/java/co/worklytics/psoxy/PsoxyModule.java b/java/core/src/main/java/co/worklytics/psoxy/PsoxyModule.java index 747c1f736..4aaa53bcf 100644 --- a/java/core/src/main/java/co/worklytics/psoxy/PsoxyModule.java +++ b/java/core/src/main/java/co/worklytics/psoxy/PsoxyModule.java @@ -261,27 +261,8 @@ ParameterSchemaUtils parameterSchemaUtils() { @Provides Pseudonymizer pseudonymizer(PseudonymizerImplFactory factory, ConfigService config, - SecretStore secretStore, - RulesUtils rulesUtils, com.avaulta.gateway.rules.RuleSet ruleSet) { - return factory.create(factory.buildOptions(config, - secretStore, - rulesUtils.getDefaultScopeIdFromRules(ruleSet) - .orElseGet(() -> { - boolean legacy = - config.getConfigPropertyAsOptional(ProxyConfigProperty.PSEUDONYM_IMPLEMENTATION) - .map(PseudonymImplementation::valueOf) - .map(implementation -> Objects.equals(implementation, PseudonymImplementation.LEGACY)) - .orElse(false); - - String defaultScopeIdFromSource = config.getConfigPropertyAsOptional(ProxyConfigProperty.SOURCE) - .map(rulesUtils::getDefaultScopeIdFromSource) - .orElse(null); - - if (legacy && StringUtils.isEmpty(defaultScopeIdFromSource)) { - log.severe("Missing scope for legacy pseudonym implementation!"); - } - return defaultScopeIdFromSource; - }))); + SecretStore secretStore) { + return factory.create(factory.buildOptions(config, secretStore)); } @Provides diff --git a/java/core/src/main/java/co/worklytics/psoxy/gateway/impl/CommonRequestHandler.java b/java/core/src/main/java/co/worklytics/psoxy/gateway/impl/CommonRequestHandler.java index 70b8beb9b..4c0ae783e 100644 --- a/java/core/src/main/java/co/worklytics/psoxy/gateway/impl/CommonRequestHandler.java +++ b/java/core/src/main/java/co/worklytics/psoxy/gateway/impl/CommonRequestHandler.java @@ -122,11 +122,8 @@ private RESTApiSanitizer loadSanitizerRules() { if (this.sanitizer == null) { synchronized ($writeLock) { if (this.sanitizer == null) { - String defaultScopeId = rulesUtils.getDefaultScopeIdFromRules(rules) - .orElseGet(() -> rulesUtils.getDefaultScopeIdFromSource(config.getConfigPropertyOrError(ProxyConfigProperty.SOURCE))); - Pseudonymizer.ConfigurationOptions options = - pseudonymizerImplFactory.buildOptions(config, secretStore, defaultScopeId); + pseudonymizerImplFactory.buildOptions(config, secretStore); this.sanitizer = sanitizerFactory.create(rules, pseudonymizerImplFactory.create(options)); } } diff --git a/java/core/src/main/java/co/worklytics/psoxy/rules/RESTRules.java b/java/core/src/main/java/co/worklytics/psoxy/rules/RESTRules.java index afc695206..258352f3e 100644 --- a/java/core/src/main/java/co/worklytics/psoxy/rules/RESTRules.java +++ b/java/core/src/main/java/co/worklytics/psoxy/rules/RESTRules.java @@ -9,8 +9,6 @@ public interface RESTRules extends RuleSet, Serializable { - String getDefaultScopeIdForSource(); - Boolean getAllowAllEndpoints(); List getEndpoints(); diff --git a/java/core/src/main/java/co/worklytics/psoxy/rules/RuleSet.java b/java/core/src/main/java/co/worklytics/psoxy/rules/RuleSet.java index 823326b81..658e88363 100644 --- a/java/core/src/main/java/co/worklytics/psoxy/rules/RuleSet.java +++ b/java/core/src/main/java/co/worklytics/psoxy/rules/RuleSet.java @@ -3,6 +3,4 @@ public interface RuleSet extends com.avaulta.gateway.rules.RuleSet { - @Deprecated // migrate to use transform-level ids - String getDefaultScopeIdForSource(); } diff --git a/java/core/src/main/java/co/worklytics/psoxy/rules/Rules2.java b/java/core/src/main/java/co/worklytics/psoxy/rules/Rules2.java index 714cacba6..98c1fac98 100644 --- a/java/core/src/main/java/co/worklytics/psoxy/rules/Rules2.java +++ b/java/core/src/main/java/co/worklytics/psoxy/rules/Rules2.java @@ -4,6 +4,7 @@ import com.avaulta.gateway.rules.Endpoint; import com.avaulta.gateway.rules.JsonSchemaFilter; import com.avaulta.gateway.rules.transforms.Transform; +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import lombok.*; @@ -19,22 +20,13 @@ @NoArgsConstructor //for Jackson @Getter @EqualsAndHashCode +@JsonIgnoreProperties({"defaultScopeIdForSource"}) @JsonPropertyOrder({"allowAllEndpoints", "endpoints", "defaultScopeIdForSource"}) @JsonInclude(JsonInclude.Include.NON_NULL) //NOTE: despite name, also affects YAML encoding public class Rules2 implements RESTRules { - private static final long serialVersionUID = 1L; - /** - * scopeId to set for any identifiers parsed from source that aren't email addresses - * - * NOTE: can be overridden by config, in case you're connecting to an on-prem / private instance - * of the source and you don't want its identifiers to be treated as under the default scope - */ - @Getter - String defaultScopeIdForSource; - @Singular List endpoints; @@ -43,8 +35,6 @@ public class Rules2 implements RESTRules { @Builder.Default Boolean allowAllEndpoints = false; - - Map definitions; /** diff --git a/java/core/src/main/java/co/worklytics/psoxy/rules/RulesUtils.java b/java/core/src/main/java/co/worklytics/psoxy/rules/RulesUtils.java index 8c4eba3eb..6c60691ea 100644 --- a/java/core/src/main/java/co/worklytics/psoxy/rules/RulesUtils.java +++ b/java/core/src/main/java/co/worklytics/psoxy/rules/RulesUtils.java @@ -144,51 +144,4 @@ public List parseAdditionalTransforms(ConfigServ } } - public Optional getDefaultScopeIdFromRules(com.avaulta.gateway.rules.RuleSet ruleSet) { - if (ruleSet instanceof RuleSet) { - return Optional.ofNullable(((RuleSet) ruleSet).getDefaultScopeIdForSource()); - } else { - return Optional.empty(); - } - } - - static Map defaultScopeIdBySource; - static { - defaultScopeIdBySource = new ConcurrentHashMap<>(); - defaultScopeIdBySource.put("gdirectory", "gapps"); - defaultScopeIdBySource.put("gcal", "gapps"); - defaultScopeIdBySource.put("gmail", "gapps"); - defaultScopeIdBySource.put("google-chat", "gapps"); - defaultScopeIdBySource.put("google-meet", "gapps"); - defaultScopeIdBySource.put("gdrive", "gapps"); - - defaultScopeIdBySource.put("azure-ad", "azure-ad"); - defaultScopeIdBySource.put("outlook-cal", "azure-ad"); - defaultScopeIdBySource.put("outlook-mail", "azure-ad"); - - defaultScopeIdBySource.put("github", "github"); - defaultScopeIdBySource.put("github-enterprise-server", "github"); - defaultScopeIdBySource.put("slack", "slack"); - defaultScopeIdBySource.put("zoom", "zoom"); - defaultScopeIdBySource.put("salesforce", "salesforce"); - defaultScopeIdBySource.put("jira-server", "jira"); - defaultScopeIdBySource.put("jira-cloud", "jira"); - defaultScopeIdBySource.put("dropbox-business", "dropbox-business"); - - // we expect hris (employee_id) scope in all bulk data sources - defaultScopeIdBySource.put("hris", "hris"); - defaultScopeIdBySource.put("badge", "hris"); - defaultScopeIdBySource.put("survey", "hris"); - defaultScopeIdBySource.put("qualtrics", "hris"); - } - - public String getDefaultScopeIdFromSource(@NonNull String source) { - String defaultScopeId = defaultScopeIdBySource.get(source); - - if (defaultScopeId == null) { - log.warning("No defaultScopeId set for source; failing to source itself: " + source); - defaultScopeId = source; - } - return defaultScopeId; - } -} \ No newline at end of file +} diff --git a/java/core/src/test/java/co/worklytics/psoxy/PseudonymizerImplTest.java b/java/core/src/test/java/co/worklytics/psoxy/PseudonymizerImplTest.java index e798706a3..b3bae9609 100644 --- a/java/core/src/test/java/co/worklytics/psoxy/PseudonymizerImplTest.java +++ b/java/core/src/test/java/co/worklytics/psoxy/PseudonymizerImplTest.java @@ -127,26 +127,6 @@ void emailCanonicalDistinct(String mailHeaderValue) { } - @Test - void hashMatchesLegacy() { - // all this is really testing is that we aren't breaking the LEGACY hash implementation - - pseudonymizer = pseudonymizerImplFactory.create(Pseudonymizer.ConfigurationOptions.builder() - .pseudonymizationSalt("salt") - .pseudonymImplementation(PseudonymImplementation.LEGACY) - .build()); - - //value taken from legacy app - final String CANONICAL = "original"; - - //value taken from legacy app - final String identityHash = "Xz77cF4Fm7KMPAuwLaGXD82LKXNwi69nNcH0nKtGRJA"; - - assertEquals(identityHash, - pseudonymizer.pseudonymize(CANONICAL).getHash()); - } - - @Test void hashesMatchRegardlessOfReversible() { final String CANONICAL = "original"; diff --git a/java/core/src/test/java/co/worklytics/psoxy/impl/RESTApiSanitizerImplTest.java b/java/core/src/test/java/co/worklytics/psoxy/impl/RESTApiSanitizerImplTest.java index 710d9c4aa..1cb77c8da 100644 --- a/java/core/src/test/java/co/worklytics/psoxy/impl/RESTApiSanitizerImplTest.java +++ b/java/core/src/test/java/co/worklytics/psoxy/impl/RESTApiSanitizerImplTest.java @@ -104,7 +104,6 @@ public void setup() { Pseudonymizer pseudonymizer = pseudonymizerImplFactory.create(Pseudonymizer.ConfigurationOptions.builder() .pseudonymizationSalt("salt") - .pseudonymImplementation(PseudonymImplementation.LEGACY) .build()); sanitizer = sanitizerFactory.create(PrebuiltSanitizerRules.DEFAULTS.get("gmail"), pseudonymizer); diff --git a/java/core/src/test/java/co/worklytics/psoxy/storage/impl/BulkDataSanitizerImplTest.java b/java/core/src/test/java/co/worklytics/psoxy/storage/impl/BulkDataSanitizerImplTest.java index f79c9f7a3..aa54a6dbe 100644 --- a/java/core/src/test/java/co/worklytics/psoxy/storage/impl/BulkDataSanitizerImplTest.java +++ b/java/core/src/test/java/co/worklytics/psoxy/storage/impl/BulkDataSanitizerImplTest.java @@ -105,7 +105,6 @@ public void setup() { pseudonymizer = pseudonymizerImplFactory.create(Pseudonymizer.ConfigurationOptions.builder() .pseudonymizationSalt("salt") - .pseudonymImplementation(PseudonymImplementation.LEGACY) .build()); //make it deterministic @@ -591,7 +590,6 @@ void transform_ghusername() { assertEquals(EXPECTED, resultString); PseudonymizerImpl githubPseudonymizer = pseudonymizerImplFactory.create(Pseudonymizer.ConfigurationOptions.builder() - .pseudonymImplementation(PseudonymImplementation.LEGACY) .pseudonymizationSalt(pseudonymizer.getOptions().getPseudonymizationSalt()) .build()); @@ -651,7 +649,6 @@ void transform_complex_ghusername() { assertEquals(EXPECTED, resultString); PseudonymizerImpl githubPseudonymizer = pseudonymizerImplFactory.create(Pseudonymizer.ConfigurationOptions.builder() - .pseudonymImplementation(PseudonymImplementation.LEGACY) .pseudonymizationSalt(pseudonymizer.getOptions().getPseudonymizationSalt()) .build()); diff --git a/java/gateway-core/src/main/java/com/avaulta/gateway/pseudonyms/PseudonymImplementation.java b/java/gateway-core/src/main/java/com/avaulta/gateway/pseudonyms/PseudonymImplementation.java index 48c2d0883..f75ecfab9 100644 --- a/java/gateway-core/src/main/java/com/avaulta/gateway/pseudonyms/PseudonymImplementation.java +++ b/java/gateway-core/src/main/java/com/avaulta/gateway/pseudonyms/PseudonymImplementation.java @@ -17,6 +17,7 @@ public enum PseudonymImplementation { //not based on scope; base64-url encoded DEFAULT("v0.4"), //includes 'scope' + @Deprecated // configuring this should blow up proxy ops, rather than filling nonsense data LEGACY("v0.3"), ; diff --git a/java/gateway-core/src/main/java/com/avaulta/gateway/rules/ColumnarRules.java b/java/gateway-core/src/main/java/com/avaulta/gateway/rules/ColumnarRules.java index a4e79c0d0..6db0bdd7c 100644 --- a/java/gateway-core/src/main/java/com/avaulta/gateway/rules/ColumnarRules.java +++ b/java/gateway-core/src/main/java/com/avaulta/gateway/rules/ColumnarRules.java @@ -29,7 +29,7 @@ @Getter @EqualsAndHashCode @JsonPropertyOrder(alphabetic = true) -@JsonIgnoreProperties("defaultScopeIdForSource") // so compatiable with legacy CsvRules +@JsonIgnoreProperties("defaultScopeIdForSource") // so compatible with legacy CsvRules public class ColumnarRules implements BulkDataRules { private static final long serialVersionUID = 1L; From 9d6c71f7caf412a00660415e6407b4e13fa03b90 Mon Sep 17 00:00:00 2001 From: Erik Schultink Date: Tue, 19 Nov 2024 13:28:43 -0800 Subject: [PATCH 03/15] fix pseudonym json format everywhere --- .../sanitized/stories.json | 12 +- .../example-api-responses/sanitized/task.json | 14 +- .../sanitized/tasks.json | 12 +- .../sanitized/users.json | 4 +- .../sanitized/group_member.json | 8 +- .../sanitized/issue_changelog.json | 16 +-- .../sanitized/issue_comment_v2.json | 8 +- .../sanitized/issue_comment_v3.json | 10 +- .../sanitized/issue_worklog_v2.json | 8 +- .../sanitized/issue_worklog_v3.json | 10 +- .../sanitized/issues_by_jql.json | 8 +- .../sanitized/server_issue.json | 22 +-- .../sanitized/server_issue_comment_v2.json | 8 +- .../sanitized/server_issue_worklog_v2.json | 8 +- .../sanitized/server_issues_by_jql_v2.json | 10 +- .../sanitized/server_users.json | 4 +- .../sanitized/users.json | 10 +- .../sanitized/events.json | 18 +-- .../sanitized/events_continue.json | 18 +-- .../sanitized/file_list.json | 2 +- .../sanitized/file_list_continue.json | 2 +- .../sanitized/file_list_revision.json | 2 +- .../sanitized/member_list.json | 8 +- .../sanitized/member_list_continue.json | 8 +- .../sanitized/comment_reactions.json | 4 +- .../sanitized/commit.json | 14 +- .../sanitized/commit_comments.json | 4 +- .../sanitized/graph_api_users_members.json | 6 +- .../sanitized/graph_api_users_saml.json | 12 +- .../sanitized/issue.json | 20 +-- .../sanitized/issue_events.json | 4 +- .../sanitized/issue_timeline.json | 38 +++--- .../sanitized/issues.json | 20 +-- .../sanitized/issues_comments.json | 4 +- .../sanitized/issues_comments_reactions.json | 4 +- .../sanitized/issues_reactions.json | 4 +- .../sanitized/org_audit_log.json | 8 +- .../sanitized/org_members.json | 4 +- .../example-api-responses/sanitized/pull.json | 44 +++--- .../sanitized/pull_comments.json | 4 +- .../sanitized/pull_commits.json | 12 +- .../sanitized/pull_review_comments.json | 4 +- .../sanitized/pull_reviews.json | 4 +- .../sanitized/pulls.json | 40 +++--- .../sanitized/repo_commits.json | 12 +- .../sanitized/repo_events.json | 6 +- .../sanitized/repos.json | 4 +- .../sanitized/team_members.json | 4 +- .../example-api-responses/sanitized/user.json | 6 +- .../sanitized/event.json | 10 +- .../sanitized/events.json | 126 +++++++++--------- .../sanitized/group-members.json | 10 +- .../example-api-responses/sanitized/user.json | 66 ++++----- .../sanitized/users.json | 78 +++++------ .../sanitized_no-app-ids/group-members.json | 20 +-- .../sanitized_no-app-ids/user.json | 66 ++++----- .../sanitized_no-app-ids/users.json | 78 +++++------ .../v2-sanitized/files.json | 10 +- .../v2-sanitized/permission.json | 2 +- .../v2-sanitized/permissions.json | 6 +- .../v2-sanitized/revision.json | 2 +- .../v2-sanitized/revisions.json | 4 +- .../v3-sanitized/files.json | 8 +- .../v3-sanitized/permission.json | 2 +- .../v3-sanitized/permissions.json | 6 +- .../v3-sanitized/revision.json | 2 +- .../v3-sanitized/revisions.json | 2 +- .../sanitized/message.json | 12 +- .../sanitized/meet-activities.json | 24 ++-- .../sanitized/group-members.json | 76 +++++------ .../example-api-responses/sanitized/user.json | 6 +- .../sanitized/users.json | 24 ++-- .../sanitized_no-app-ids/group-members.json | 114 ++++++++-------- .../sanitized_no-app-ids/user.json | 6 +- .../sanitized_no-app-ids/users.json | 24 ++-- ..._onlineMeetings_attendanceReport_v1.0.json | 4 +- .../sanitized/Users_v1.0.json | 24 ++-- .../Chats_messages_v1.0.json | 8 +- .../Communications_callRecord_v1.0.json | 16 +-- ...allRecords_getDirectRoutingCalls_v1.0.json | 4 +- ...cations_callRecords_getPstnCalls_v1.0.json | 4 +- .../Communications_callRecords_v1.0.json | 8 +- .../Communications_calls_v1.0.json | 2 +- .../Teams_channels_messages_delta_v1.0.json | 6 +- .../Teams_channels_messages_v1.0.json | 10 +- ..._onlineMeetings_attendanceReport_v1.0.json | 4 +- .../Users_onlineMeetings_v1.0.json | 4 +- .../sanitized/CalendarEvents_v1.0.json | 68 +++++----- .../sanitized/CalendarView_v1.0.json | 6 +- .../CalendarView_v1.0_wOnlineMeetings.json | 12 +- .../CalendarView_v1.0_wZoomUrls.json | 6 +- .../sanitized/Event_v1.0.json | 6 +- .../sanitized/Events_v1.0.json | 68 +++++----- .../CalendarEvents_v1.0.json | 68 +++++----- .../CalendarView_v1.0.json | 6 +- .../CalendarView_v1.0_wOnlineMeetings.json | 12 +- .../CalendarView_v1.0_wZoomUrls.json | 6 +- .../sanitized_no-app-ids/Event_v1.0.json | 6 +- .../sanitized_no-app-ids/Events_v1.0.json | 68 +++++----- .../CalendarEvents_v1.0.json | 68 +++++----- .../CalendarView_v1.0.json | 6 +- .../CalendarView_v1.0_wOnlineMeetings.json | 12 +- .../CalendarView_v1.0_wZoomUrls.json | 6 +- .../Event_v1.0.json | 6 +- .../Events_v1.0.json | 68 +++++----- .../sanitized/Message_v1.0.json | 6 +- .../sanitized/Messages_SentItems_v1.0.json | 6 +- .../sanitized_no-app-ids/Message_v1.0.json | 6 +- .../Messages_SentItems_v1.0.json | 6 +- .../Message_v1.0.json | 6 +- .../Messages_SentItems_v1.0.json | 6 +- .../sanitized/accounts.json | 12 +- .../sanitized/accounts_by_query.json | 12 +- .../sanitized/related_item_query.json | 30 ++--- .../sanitized/users.json | 12 +- .../sanitized/users_by_query.json | 12 +- .../discovery-conversations-history.json | 46 +++---- .../discovery-conversations-info.json | 2 +- .../sanitized/discovery-users-list.json | 12 +- .../sanitized/list-user-meetings.json | 8 +- .../sanitized/list-users.json | 4 +- .../sanitized/meeting-details.json | 4 +- .../sanitized/past-meeting-details.json | 4 +- .../sanitized/past-meeting-participants.json | 10 +- .../sanitized/report-meeting-details.json | 2 +- .../report-meeting-participants.json | 8 +- .../sanitized/report-user-meetings.json | 2 +- .../psoxy/impl/RESTApiSanitizerImplTest.java | 2 +- .../psoxy/storage/StorageHandlerTest.java | 12 +- .../impl/BulkDataSanitizerImplTest.java | 60 ++++----- 130 files changed, 1091 insertions(+), 1091 deletions(-) diff --git a/docs/sources/asana/example-api-responses/sanitized/stories.json b/docs/sources/asana/example-api-responses/sanitized/stories.json index 881ff7620..6af1af512 100644 --- a/docs/sources/asana/example-api-responses/sanitized/stories.json +++ b/docs/sources/asana/example-api-responses/sanitized/stories.json @@ -8,11 +8,11 @@ "resource_subtype":"comment_added", "sticker_name":"dancing_unicorn", "assignee":{ - "gid":"{\"scope\":\"asana\",\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", + "gid":"{\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", "resource_type":"user" }, "created_by":{ - "gid":"{\"scope\":\"asana\",\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", + "gid":"{\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", "resource_type":"user" }, "custom_field":{ @@ -60,7 +60,7 @@ "resource_type":"task" }, "follower":{ - "gid":"{\"scope\":\"asana\",\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", + "gid":"{\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", "resource_type":"user" }, "hearted":false, @@ -68,7 +68,7 @@ { "gid":"12345", "user":{ - "gid":"{\"scope\":\"asana\",\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", + "gid":"{\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", "resource_type":"user" } } @@ -79,7 +79,7 @@ { "gid":"12345", "user":{ - "gid":"{\"scope\":\"asana\",\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", + "gid":"{\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", "resource_type":"user" } } @@ -148,7 +148,7 @@ "resource_type":"story", "created_at":"2012-02-22T02:06:58.147Z", "created_by":{ - "gid":"{\"scope\":\"asana\",\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", + "gid":"{\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", "resource_type":"user" }, "resource_subtype":"comment_added", diff --git a/docs/sources/asana/example-api-responses/sanitized/task.json b/docs/sources/asana/example-api-responses/sanitized/task.json index 1e74d7c80..d6b06a032 100644 --- a/docs/sources/asana/example-api-responses/sanitized/task.json +++ b/docs/sources/asana/example-api-responses/sanitized/task.json @@ -7,7 +7,7 @@ "completed":false, "completed_at":"2012-02-22T02:06:58.147Z", "completed_by":{ - "gid":"{\"scope\":\"asana\",\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", + "gid":"{\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", "resource_type":"user" }, "created_at":"2012-02-22T02:06:58.147Z", @@ -30,7 +30,7 @@ { "gid":"12345", "user":{ - "gid":"{\"scope\":\"asana\",\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", + "gid":"{\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", "resource_type":"user" } } @@ -41,7 +41,7 @@ { "gid":"12345", "user":{ - "gid":"{\"scope\":\"asana\",\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", + "gid":"{\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", "resource_type":"user" } } @@ -66,7 +66,7 @@ "start_at":"2019-09-14T02:06:58.147Z", "start_on":"2019-09-14", "assignee":{ - "gid":"{\"scope\":\"asana\",\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", + "gid":"{\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", "resource_type":"user" }, "assignee_section":{ @@ -78,7 +78,7 @@ "gid":"12345", "resource_type":"custom_field", "created_by":{ - "gid":"{\"scope\":\"asana\",\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", + "gid":"{\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", "resource_type":"user" }, "currency_code":"EUR", @@ -118,7 +118,7 @@ "number_value":5.2, "people_value":[ { - "gid":"{\"scope\":\"asana\",\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", + "gid":"{\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", "resource_type":"user" } ], @@ -130,7 +130,7 @@ ], "followers":[ { - "gid":"{\"scope\":\"asana\",\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", + "gid":"{\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", "resource_type":"user" } ], diff --git a/docs/sources/asana/example-api-responses/sanitized/tasks.json b/docs/sources/asana/example-api-responses/sanitized/tasks.json index d1c39faf9..8b1f8c151 100644 --- a/docs/sources/asana/example-api-responses/sanitized/tasks.json +++ b/docs/sources/asana/example-api-responses/sanitized/tasks.json @@ -8,7 +8,7 @@ "completed":false, "completed_at":"2012-02-22T02:06:58.147Z", "completed_by":{ - "gid":"{\"scope\":\"asana\",\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", + "gid":"{\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", "resource_type":"user" }, "created_at":"2012-02-22T02:06:58.147Z", @@ -31,7 +31,7 @@ { "gid":"12345", "user":{ - "gid":"{\"scope\":\"asana\",\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", + "gid":"{\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", "resource_type":"user" } } @@ -42,7 +42,7 @@ { "gid":"12345", "user":{ - "gid":"{\"scope\":\"asana\",\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", + "gid":"{\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", "resource_type":"user" } } @@ -67,7 +67,7 @@ "start_at":"2019-09-14T02:06:58.147Z", "start_on":"2019-09-14", "assignee":{ - "gid":"{\"scope\":\"asana\",\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", + "gid":"{\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", "resource_type":"user" }, "assignee_section":{ @@ -79,7 +79,7 @@ "gid":"12345", "resource_type":"custom_field", "created_by":{ - "gid":"{\"scope\":\"asana\",\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", + "gid":"{\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", "resource_type":"user" }, "currency_code":"EUR", @@ -121,7 +121,7 @@ ], "followers":[ { - "gid":"{\"scope\":\"asana\",\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", + "gid":"{\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\"}", "resource_type":"user" } ], diff --git a/docs/sources/asana/example-api-responses/sanitized/users.json b/docs/sources/asana/example-api-responses/sanitized/users.json index 7575434e3..bab068750 100644 --- a/docs/sources/asana/example-api-responses/sanitized/users.json +++ b/docs/sources/asana/example-api-responses/sanitized/users.json @@ -1,9 +1,9 @@ { "data":[ { - "gid":"{\"scope\":\"asana\",\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\",\"reversible\":\"p~r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaGzFatT5PGvb7S57rNnHGwT\"}", + "gid":"{\"hash\":\"r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaE\",\"reversible\":\"p~r4ONZUfEyn9MUkcyDQkQ5MBNpdIerM24MasxFpuQBaGzFatT5PGvb7S57rNnHGwT\"}", "resource_type":"user", - "email":"{\"scope\":\"email\",\"domain\":\"example.com\",\"hash\":\"j-MVT2zWPkD22C8GXQVj1aWjS0DGVErUaRim930Sitw\"}", + "email":"{\"domain\":\"example.com\",\"hash\":\"j-MVT2zWPkD22C8GXQVj1aWjS0DGVErUaRim930Sitw\"}", "workspaces":[ { "gid":"12345", diff --git a/docs/sources/atlassian/jira/example-api-responses/sanitized/group_member.json b/docs/sources/atlassian/jira/example-api-responses/sanitized/group_member.json index d11854688..c85d8d142 100644 --- a/docs/sources/atlassian/jira/example-api-responses/sanitized/group_member.json +++ b/docs/sources/atlassian/jira/example-api-responses/sanitized/group_member.json @@ -8,16 +8,16 @@ "values":[ { "key":"", - "accountId":"{\"scope\":\"jira\",\"hash\":\"nrSd0Q7Yg81NfVbwLq6FUnyOBL7lunEWD-2Raiuy9HI\"}", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"example.com\",\"hash\":\"UltPZuWYQhKbkt6c-42zy9-Fn2K9TKXJrySsEkApt58\"}", + "accountId":"{\"hash\":\"nrSd0Q7Yg81NfVbwLq6FUnyOBL7lunEWD-2Raiuy9HI\"}", + "emailAddress":"{\"domain\":\"example.com\",\"hash\":\"UltPZuWYQhKbkt6c-42zy9-Fn2K9TKXJrySsEkApt58\"}", "active":true, "timeZone":"Australia/Sydney", "accountType":"atlassian" }, { "key":"", - "accountId":"{\"scope\":\"jira\",\"hash\":\"R2MoDHOKLMjyo0mcmJkEHExyoMWcr1luvoB4IZEZlDQ\"}", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"example.com\",\"hash\":\"gNFNvSKDH7Fur6w-eDDOFy_oNi69ZmKLWijejL6TFe0\"}", + "accountId":"{\"hash\":\"R2MoDHOKLMjyo0mcmJkEHExyoMWcr1luvoB4IZEZlDQ\"}", + "emailAddress":"{\"domain\":\"example.com\",\"hash\":\"gNFNvSKDH7Fur6w-eDDOFy_oNi69ZmKLWijejL6TFe0\"}", "active":false, "timeZone":"Australia/Sydney", "accountType":"atlassian" diff --git a/docs/sources/atlassian/jira/example-api-responses/sanitized/issue_changelog.json b/docs/sources/atlassian/jira/example-api-responses/sanitized/issue_changelog.json index c09581634..5fb9314b6 100644 --- a/docs/sources/atlassian/jira/example-api-responses/sanitized/issue_changelog.json +++ b/docs/sources/atlassian/jira/example-api-responses/sanitized/issue_changelog.json @@ -8,7 +8,7 @@ { "id":"10680", "author":{ - "accountId":"{\"scope\":\"jira\",\"hash\":\"_dUKcjeOP82hpF2_-_4EnrTnpuqGC5ov-3cwITIcIs0\"}", + "accountId":"{\"hash\":\"_dUKcjeOP82hpF2_-_4EnrTnpuqGC5ov-3cwITIcIs0\"}", "active":false, "timeZone":"America/New_York", "accountType":"atlassian" @@ -25,7 +25,7 @@ { "id":"10689", "author":{ - "accountId":"{\"scope\":\"jira\",\"hash\":\"_dUKcjeOP82hpF2_-_4EnrTnpuqGC5ov-3cwITIcIs0\"}", + "accountId":"{\"hash\":\"_dUKcjeOP82hpF2_-_4EnrTnpuqGC5ov-3cwITIcIs0\"}", "active":false, "timeZone":"America/New_York", "accountType":"atlassian" @@ -42,7 +42,7 @@ { "id":"10702", "author":{ - "accountId":"{\"scope\":\"jira\",\"hash\":\"_dUKcjeOP82hpF2_-_4EnrTnpuqGC5ov-3cwITIcIs0\"}", + "accountId":"{\"hash\":\"_dUKcjeOP82hpF2_-_4EnrTnpuqGC5ov-3cwITIcIs0\"}", "active":false, "timeZone":"America/New_York", "accountType":"atlassian" @@ -64,8 +64,8 @@ { "id":"10716", "author":{ - "accountId":"{\"scope\":\"jira\",\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", + "accountId":"{\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", + "emailAddress":"{\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", "active":true, "timeZone":"America/New_York", "accountType":"atlassian" @@ -91,8 +91,8 @@ { "id":"10724", "author":{ - "accountId":"{\"scope\":\"jira\",\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", + "accountId":"{\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", + "emailAddress":"{\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", "active":true, "timeZone":"America/New_York", "accountType":"atlassian" @@ -103,7 +103,7 @@ "field":"assignee", "fieldtype":"jira", "fieldId":"assignee", - "tmpFromAccountId":"{\"scope\":\"jira\",\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", + "tmpFromAccountId":"{\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", "tmpToAccountId":"null" } ] diff --git a/docs/sources/atlassian/jira/example-api-responses/sanitized/issue_comment_v2.json b/docs/sources/atlassian/jira/example-api-responses/sanitized/issue_comment_v2.json index e6b968b06..098779ac0 100644 --- a/docs/sources/atlassian/jira/example-api-responses/sanitized/issue_comment_v2.json +++ b/docs/sources/atlassian/jira/example-api-responses/sanitized/issue_comment_v2.json @@ -7,15 +7,15 @@ "self":"https://api.atlassian.com/ex/jira/f6eef702-e05d-43ba-bd5c-75fce47d560e/rest/api/3/issue/10709/comment/10024", "id":"10024", "author":{ - "accountId":"{\"scope\":\"jira\",\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", + "accountId":"{\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", + "emailAddress":"{\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", "active":true, "timeZone":"America/New_York", "accountType":"atlassian" }, "updateAuthor":{ - "accountId":"{\"scope\":\"jira\",\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", + "accountId":"{\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", + "emailAddress":"{\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", "active":true, "timeZone":"America/New_York", "accountType":"atlassian" diff --git a/docs/sources/atlassian/jira/example-api-responses/sanitized/issue_comment_v3.json b/docs/sources/atlassian/jira/example-api-responses/sanitized/issue_comment_v3.json index d80bd9d6b..767b4777a 100644 --- a/docs/sources/atlassian/jira/example-api-responses/sanitized/issue_comment_v3.json +++ b/docs/sources/atlassian/jira/example-api-responses/sanitized/issue_comment_v3.json @@ -7,8 +7,8 @@ "self":"https://api.atlassian.com/ex/jira/f6eef702-e05d-43ba-bd5c-75fce47d560e/rest/api/3/issue/10709/comment/10024", "id":"10024", "author":{ - "accountId":"{\"scope\":\"jira\",\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", + "accountId":"{\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", + "emailAddress":"{\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", "active":true, "timeZone":"America/New_York", "accountType":"atlassian" @@ -23,7 +23,7 @@ { "type":"mention", "attrs":{ - "id":"{\"scope\":\"jira\",\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", + "id":"{\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", "accessLevel":"" } }, @@ -35,8 +35,8 @@ ] }, "updateAuthor":{ - "accountId":"{\"scope\":\"jira\",\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", + "accountId":"{\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", + "emailAddress":"{\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", "active":true, "timeZone":"America/New_York", "accountType":"atlassian" diff --git a/docs/sources/atlassian/jira/example-api-responses/sanitized/issue_worklog_v2.json b/docs/sources/atlassian/jira/example-api-responses/sanitized/issue_worklog_v2.json index 683e134d5..4b137b64b 100644 --- a/docs/sources/atlassian/jira/example-api-responses/sanitized/issue_worklog_v2.json +++ b/docs/sources/atlassian/jira/example-api-responses/sanitized/issue_worklog_v2.json @@ -6,15 +6,15 @@ { "self":"https://api.atlassian.com/ex/jira/f6eef702-e05d-43ba-bd5c-75fce47d560e/rest/api/3/issue/10706/worklog/10000", "author":{ - "accountId":"{\"scope\":\"jira\",\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", + "accountId":"{\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", + "emailAddress":"{\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", "active":true, "timeZone":"America/New_York", "accountType":"atlassian" }, "updateAuthor":{ - "accountId":"{\"scope\":\"jira\",\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", + "accountId":"{\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", + "emailAddress":"{\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", "active":true, "timeZone":"America/New_York", "accountType":"atlassian" diff --git a/docs/sources/atlassian/jira/example-api-responses/sanitized/issue_worklog_v3.json b/docs/sources/atlassian/jira/example-api-responses/sanitized/issue_worklog_v3.json index c23a6dfa8..0fe0c1653 100644 --- a/docs/sources/atlassian/jira/example-api-responses/sanitized/issue_worklog_v3.json +++ b/docs/sources/atlassian/jira/example-api-responses/sanitized/issue_worklog_v3.json @@ -6,15 +6,15 @@ { "self":"https://api.atlassian.com/ex/jira/f6eef702-e05d-43ba-bd5c-75fce47d560e/rest/api/3/issue/10706/worklog/10000", "author":{ - "accountId":"{\"scope\":\"jira\",\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", + "accountId":"{\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", + "emailAddress":"{\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", "active":true, "timeZone":"America/New_York", "accountType":"atlassian" }, "updateAuthor":{ - "accountId":"{\"scope\":\"jira\",\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", + "accountId":"{\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", + "emailAddress":"{\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", "active":true, "timeZone":"America/New_York", "accountType":"atlassian" @@ -32,7 +32,7 @@ { "type":"mention", "attrs":{ - "id":"{\"scope\":\"jira\",\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", + "id":"{\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", "accessLevel":"" } }, diff --git a/docs/sources/atlassian/jira/example-api-responses/sanitized/issues_by_jql.json b/docs/sources/atlassian/jira/example-api-responses/sanitized/issues_by_jql.json index 89cda6f0f..9b533c146 100644 --- a/docs/sources/atlassian/jira/example-api-responses/sanitized/issues_by_jql.json +++ b/docs/sources/atlassian/jira/example-api-responses/sanitized/issues_by_jql.json @@ -59,15 +59,15 @@ } }, "creator":{ - "accountId":"{\"scope\":\"jira\",\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", + "accountId":"{\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", + "emailAddress":"{\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", "active":true, "timeZone":"America/New_York", "accountType":"atlassian" }, "reporter":{ - "accountId":"{\"scope\":\"jira\",\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", + "accountId":"{\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", + "emailAddress":"{\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", "active":true, "timeZone":"America/New_York", "accountType":"atlassian" diff --git a/docs/sources/atlassian/jira/example-api-responses/sanitized/server_issue.json b/docs/sources/atlassian/jira/example-api-responses/sanitized/server_issue.json index c82fdd21e..2a1fe5654 100644 --- a/docs/sources/atlassian/jira/example-api-responses/sanitized/server_issue.json +++ b/docs/sources/atlassian/jira/example-api-responses/sanitized/server_issue.json @@ -32,7 +32,7 @@ { "id":"10000", "author":{ - "emailAddress":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", + "emailAddress":"{\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", "active":true, "timeZone":"America/New_York", "accountType":"atlassian" @@ -42,14 +42,14 @@ } ], "creator":{ - "key":"{\"scope\":\"jira\",\"hash\":\"XFMcGkt3HwABpThFffmg84wAjV_V-7EYXA2C4uBCDss\"}", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", + "key":"{\"hash\":\"XFMcGkt3HwABpThFffmg84wAjV_V-7EYXA2C4uBCDss\"}", + "emailAddress":"{\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", "active":true, "timeZone":"GMT" }, "reporter":{ - "key":"{\"scope\":\"jira\",\"hash\":\"XFMcGkt3HwABpThFffmg84wAjV_V-7EYXA2C4uBCDss\"}", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", + "key":"{\"hash\":\"XFMcGkt3HwABpThFffmg84wAjV_V-7EYXA2C4uBCDss\"}", + "emailAddress":"{\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", "active":true, "timeZone":"GMT" }, @@ -70,14 +70,14 @@ "worklogs":[ { "author":{ - "key":"{\"scope\":\"jira\",\"hash\":\"XFMcGkt3HwABpThFffmg84wAjV_V-7EYXA2C4uBCDss\"}", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", + "key":"{\"hash\":\"XFMcGkt3HwABpThFffmg84wAjV_V-7EYXA2C4uBCDss\"}", + "emailAddress":"{\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", "active":true, "timeZone":"GMT" }, "updateAuthor":{ - "key":"{\"scope\":\"jira\",\"hash\":\"XFMcGkt3HwABpThFffmg84wAjV_V-7EYXA2C4uBCDss\"}", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", + "key":"{\"hash\":\"XFMcGkt3HwABpThFffmg84wAjV_V-7EYXA2C4uBCDss\"}", + "emailAddress":"{\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", "active":true, "timeZone":"GMT" }, @@ -97,8 +97,8 @@ { "id":"10000", "author":{ - "key":"{\"scope\":\"jira\",\"hash\":\"XFMcGkt3HwABpThFffmg84wAjV_V-7EYXA2C4uBCDss\"}", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", + "key":"{\"hash\":\"XFMcGkt3HwABpThFffmg84wAjV_V-7EYXA2C4uBCDss\"}", + "emailAddress":"{\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", "active":true, "timeZone":"GMT" }, diff --git a/docs/sources/atlassian/jira/example-api-responses/sanitized/server_issue_comment_v2.json b/docs/sources/atlassian/jira/example-api-responses/sanitized/server_issue_comment_v2.json index 0fd0ef1f4..b2bf3c220 100644 --- a/docs/sources/atlassian/jira/example-api-responses/sanitized/server_issue_comment_v2.json +++ b/docs/sources/atlassian/jira/example-api-responses/sanitized/server_issue_comment_v2.json @@ -7,14 +7,14 @@ "self":"http://localhost:8080/rest/api/2/issue/10000/comment/10000", "id":"10000", "author":{ - "key":"{\"scope\":\"jira\",\"hash\":\"XFMcGkt3HwABpThFffmg84wAjV_V-7EYXA2C4uBCDss\"}", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", + "key":"{\"hash\":\"XFMcGkt3HwABpThFffmg84wAjV_V-7EYXA2C4uBCDss\"}", + "emailAddress":"{\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", "active":true, "timeZone":"GMT" }, "updateAuthor":{ - "key":"{\"scope\":\"jira\",\"hash\":\"XFMcGkt3HwABpThFffmg84wAjV_V-7EYXA2C4uBCDss\"}", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", + "key":"{\"hash\":\"XFMcGkt3HwABpThFffmg84wAjV_V-7EYXA2C4uBCDss\"}", + "emailAddress":"{\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", "active":true, "timeZone":"GMT" }, diff --git a/docs/sources/atlassian/jira/example-api-responses/sanitized/server_issue_worklog_v2.json b/docs/sources/atlassian/jira/example-api-responses/sanitized/server_issue_worklog_v2.json index a1d4e2a40..cc96975e0 100644 --- a/docs/sources/atlassian/jira/example-api-responses/sanitized/server_issue_worklog_v2.json +++ b/docs/sources/atlassian/jira/example-api-responses/sanitized/server_issue_worklog_v2.json @@ -6,14 +6,14 @@ { "self":"http://localhost:8080/rest/api/2/issue/10000/worklog/10000", "author":{ - "key":"{\"scope\":\"jira\",\"hash\":\"XFMcGkt3HwABpThFffmg84wAjV_V-7EYXA2C4uBCDss\"}", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", + "key":"{\"hash\":\"XFMcGkt3HwABpThFffmg84wAjV_V-7EYXA2C4uBCDss\"}", + "emailAddress":"{\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", "active":true, "timeZone":"GMT" }, "updateAuthor":{ - "key":"{\"scope\":\"jira\",\"hash\":\"XFMcGkt3HwABpThFffmg84wAjV_V-7EYXA2C4uBCDss\"}", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", + "key":"{\"hash\":\"XFMcGkt3HwABpThFffmg84wAjV_V-7EYXA2C4uBCDss\"}", + "emailAddress":"{\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", "active":true, "timeZone":"GMT" }, diff --git a/docs/sources/atlassian/jira/example-api-responses/sanitized/server_issues_by_jql_v2.json b/docs/sources/atlassian/jira/example-api-responses/sanitized/server_issues_by_jql_v2.json index 6dbce2629..d6ef5817d 100644 --- a/docs/sources/atlassian/jira/example-api-responses/sanitized/server_issues_by_jql_v2.json +++ b/docs/sources/atlassian/jira/example-api-responses/sanitized/server_issues_by_jql_v2.json @@ -23,15 +23,15 @@ "isWatching":true }, "creator":{ - "key":"{\"scope\":\"jira\",\"hash\":\"XFMcGkt3HwABpThFffmg84wAjV_V-7EYXA2C4uBCDss\"}", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", + "key":"{\"hash\":\"XFMcGkt3HwABpThFffmg84wAjV_V-7EYXA2C4uBCDss\"}", + "emailAddress":"{\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", "active":true, "timeZone":"GMT" }, "created":"2023-05-19T17:13:53.000+0000", "reporter":{ - "key":"{\"scope\":\"jira\",\"hash\":\"XFMcGkt3HwABpThFffmg84wAjV_V-7EYXA2C4uBCDss\"}", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", + "key":"{\"hash\":\"XFMcGkt3HwABpThFffmg84wAjV_V-7EYXA2C4uBCDss\"}", + "emailAddress":"{\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", "active":true, "timeZone":"GMT" }, @@ -55,7 +55,7 @@ "id":"10000", "statusCategory":{ "id":2, - "key":"{\"scope\":\"jira\",\"hash\":\"ghSCIzLzTafFlfc1ErWl4k3fig1cwbwSqGD3uwdt3hs\"}", + "key":"{\"hash\":\"ghSCIzLzTafFlfc1ErWl4k3fig1cwbwSqGD3uwdt3hs\"}", "colorName":"blue-gray" } } diff --git a/docs/sources/atlassian/jira/example-api-responses/sanitized/server_users.json b/docs/sources/atlassian/jira/example-api-responses/sanitized/server_users.json index d9d680691..0d5cea943 100644 --- a/docs/sources/atlassian/jira/example-api-responses/sanitized/server_users.json +++ b/docs/sources/atlassian/jira/example-api-responses/sanitized/server_users.json @@ -1,10 +1,10 @@ [ { "key": "{\"hash\":\"2N68SzffLQ6rOghU_wdzCV7P1oVJoodQEMYf-Q6tPVo\"}", - "emailAddress": "{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"GItqpD0PrNe1WX8MpyKYmCPjh99MGEBG30ziv65GIuw\"}", + "emailAddress": "{\"domain\":\"worklytics.co\",\"hash\":\"GItqpD0PrNe1WX8MpyKYmCPjh99MGEBG30ziv65GIuw\"}", "active": true, "deleted": false, "timeZone": "GMT", "locale": "en_US" } -] \ No newline at end of file +] diff --git a/docs/sources/atlassian/jira/example-api-responses/sanitized/users.json b/docs/sources/atlassian/jira/example-api-responses/sanitized/users.json index a3d41f9f2..5c332eebd 100644 --- a/docs/sources/atlassian/jira/example-api-responses/sanitized/users.json +++ b/docs/sources/atlassian/jira/example-api-responses/sanitized/users.json @@ -1,25 +1,25 @@ [ { - "accountId":"{\"scope\":\"jira\",\"hash\":\"g4FHubp92XWMqixWVgSZhTGUCq8FSaoB2CbdVz9FRiY\"}", + "accountId":"{\"hash\":\"g4FHubp92XWMqixWVgSZhTGUCq8FSaoB2CbdVz9FRiY\"}", "accountType":"atlassian", "active":true, "timeZone":"America/New_York", "locale":"en_US" }, { - "accountId":"{\"scope\":\"jira\",\"hash\":\"10PnNgS0_liS0y8b2jHJrvM_izgd7z7WT2ZyT4TR0Js\"}", + "accountId":"{\"hash\":\"10PnNgS0_liS0y8b2jHJrvM_izgd7z7WT2ZyT4TR0Js\"}", "accountType":"app", "active":true }, { - "accountId":"{\"scope\":\"jira\",\"hash\":\"0cPYvskGNK_neVXP-HENvb-Eat9de6jDBxO004gW6Uc\"}", + "accountId":"{\"hash\":\"0cPYvskGNK_neVXP-HENvb-Eat9de6jDBxO004gW6Uc\"}", "accountType":"atlassian", "active":false }, { - "accountId":"{\"scope\":\"jira\",\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", + "accountId":"{\"hash\":\"7Z5-G-SoDUxVDxHtoJZFqVZ-ri3XiGo3ylaDNUVtY6Q\"}", "accountType":"atlassian", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", + "emailAddress":"{\"domain\":\"contoso.com\",\"hash\":\"7fwD-7Ki3YuYHHeJgtXUw098eDrnFaTVAxcjy3ZcxVI\"}", "active":true, "locale":"en_US" } diff --git a/docs/sources/dropbox-business/example-api-responses/sanitized/events.json b/docs/sources/dropbox-business/example-api-responses/sanitized/events.json index 24a10c326..6fd98cb94 100644 --- a/docs/sources/dropbox-business/example-api-responses/sanitized/events.json +++ b/docs/sources/dropbox-business/example-api-responses/sanitized/events.json @@ -6,8 +6,8 @@ ".tag":"user", "user":{ ".tag":"non_team_member", - "account_id":"{\"scope\":\"dropbox\",\"hash\":\"eeXewiH2r2t8ur3dmlrXPBaYsisNOw5axAJ7bv9oAWo\"}", - "email":"{\"scope\":\"email\",\"domain\":\"acmecorp.com\",\"hash\":\"L1sNpuGGWZ7C5Rl1x1vr0YL7lo0tfZNfwR2rE7OwkP8\"}" + "account_id":"{\"hash\":\"eeXewiH2r2t8ur3dmlrXPBaYsisNOw5axAJ7bv9oAWo\"}", + "email":"{\"domain\":\"acmecorp.com\",\"hash\":\"L1sNpuGGWZ7C5Rl1x1vr0YL7lo0tfZNfwR2rE7OwkP8\"}" } }, "assets":[ @@ -25,8 +25,8 @@ ], "context":{ ".tag":"team_member", - "account_id":"{\"scope\":\"dropbox\",\"hash\":\"eeXewiH2r2t8ur3dmlrXPBaYsisNOw5axAJ7bv9oAWo\"}", - "email":"{\"scope\":\"email\",\"domain\":\"acmecorp.com\",\"hash\":\"L1sNpuGGWZ7C5Rl1x1vr0YL7lo0tfZNfwR2rE7OwkP8\"}", + "account_id":"{\"hash\":\"eeXewiH2r2t8ur3dmlrXPBaYsisNOw5axAJ7bv9oAWo\"}", + "email":"{\"domain\":\"acmecorp.com\",\"hash\":\"L1sNpuGGWZ7C5Rl1x1vr0YL7lo0tfZNfwR2rE7OwkP8\"}", "member_external_id":"ADSYNC S-1-5-21-1004296348-1135238915-682003432-1224", "team":{ "display_name":"A Team" @@ -41,8 +41,8 @@ "shared_content_link":"abc", "shared_content_owner":{ ".tag":"non_team_member", - "account_id":"{\"scope\":\"dropbox\",\"hash\":\"eeXewiH2r2t8ur3dmlrXPBaYsisNOw5axAJ7bv9oAWo\"}", - "email":"{\"scope\":\"email\",\"domain\":\"acmecorp.com\",\"hash\":\"L1sNpuGGWZ7C5Rl1x1vr0YL7lo0tfZNfwR2rE7OwkP8\"}" + "account_id":"{\"hash\":\"eeXewiH2r2t8ur3dmlrXPBaYsisNOw5axAJ7bv9oAWo\"}", + "email":"{\"domain\":\"acmecorp.com\",\"hash\":\"L1sNpuGGWZ7C5Rl1x1vr0YL7lo0tfZNfwR2rE7OwkP8\"}" } }, "event_category":{ @@ -64,7 +64,7 @@ "geo_location":{ "city":"San Francisco", "country":"US", - "ip_address":"{\"scope\":\"dropbox\",\"hash\":\"QDBlIncZwcFCcfu1eUyy-EbjkqIOptGw3CrY5zWS14Y\"}", + "ip_address":"{\"hash\":\"QDBlIncZwcFCcfu1eUyy-EbjkqIOptGw3CrY5zWS14Y\"}", "region":"California" } }, @@ -73,8 +73,8 @@ ".tag":"user", "user":{ ".tag":"non_team_member", - "account_id":"{\"scope\":\"dropbox\",\"hash\":\"nETDYw6dYz075n1mDbwGnz8nMxuiALmT_Oqr3C-r0Cs\"}", - "email":"{\"scope\":\"email\",\"domain\":\"acmecorp.com\",\"hash\":\"jPsuAFufkXB7XPGbISEkJ9heWB2428ynP4uU0limWLY\"}" + "account_id":"{\"hash\":\"nETDYw6dYz075n1mDbwGnz8nMxuiALmT_Oqr3C-r0Cs\"}", + "email":"{\"domain\":\"acmecorp.com\",\"hash\":\"jPsuAFufkXB7XPGbISEkJ9heWB2428ynP4uU0limWLY\"}" } } ], diff --git a/docs/sources/dropbox-business/example-api-responses/sanitized/events_continue.json b/docs/sources/dropbox-business/example-api-responses/sanitized/events_continue.json index 24a10c326..6fd98cb94 100644 --- a/docs/sources/dropbox-business/example-api-responses/sanitized/events_continue.json +++ b/docs/sources/dropbox-business/example-api-responses/sanitized/events_continue.json @@ -6,8 +6,8 @@ ".tag":"user", "user":{ ".tag":"non_team_member", - "account_id":"{\"scope\":\"dropbox\",\"hash\":\"eeXewiH2r2t8ur3dmlrXPBaYsisNOw5axAJ7bv9oAWo\"}", - "email":"{\"scope\":\"email\",\"domain\":\"acmecorp.com\",\"hash\":\"L1sNpuGGWZ7C5Rl1x1vr0YL7lo0tfZNfwR2rE7OwkP8\"}" + "account_id":"{\"hash\":\"eeXewiH2r2t8ur3dmlrXPBaYsisNOw5axAJ7bv9oAWo\"}", + "email":"{\"domain\":\"acmecorp.com\",\"hash\":\"L1sNpuGGWZ7C5Rl1x1vr0YL7lo0tfZNfwR2rE7OwkP8\"}" } }, "assets":[ @@ -25,8 +25,8 @@ ], "context":{ ".tag":"team_member", - "account_id":"{\"scope\":\"dropbox\",\"hash\":\"eeXewiH2r2t8ur3dmlrXPBaYsisNOw5axAJ7bv9oAWo\"}", - "email":"{\"scope\":\"email\",\"domain\":\"acmecorp.com\",\"hash\":\"L1sNpuGGWZ7C5Rl1x1vr0YL7lo0tfZNfwR2rE7OwkP8\"}", + "account_id":"{\"hash\":\"eeXewiH2r2t8ur3dmlrXPBaYsisNOw5axAJ7bv9oAWo\"}", + "email":"{\"domain\":\"acmecorp.com\",\"hash\":\"L1sNpuGGWZ7C5Rl1x1vr0YL7lo0tfZNfwR2rE7OwkP8\"}", "member_external_id":"ADSYNC S-1-5-21-1004296348-1135238915-682003432-1224", "team":{ "display_name":"A Team" @@ -41,8 +41,8 @@ "shared_content_link":"abc", "shared_content_owner":{ ".tag":"non_team_member", - "account_id":"{\"scope\":\"dropbox\",\"hash\":\"eeXewiH2r2t8ur3dmlrXPBaYsisNOw5axAJ7bv9oAWo\"}", - "email":"{\"scope\":\"email\",\"domain\":\"acmecorp.com\",\"hash\":\"L1sNpuGGWZ7C5Rl1x1vr0YL7lo0tfZNfwR2rE7OwkP8\"}" + "account_id":"{\"hash\":\"eeXewiH2r2t8ur3dmlrXPBaYsisNOw5axAJ7bv9oAWo\"}", + "email":"{\"domain\":\"acmecorp.com\",\"hash\":\"L1sNpuGGWZ7C5Rl1x1vr0YL7lo0tfZNfwR2rE7OwkP8\"}" } }, "event_category":{ @@ -64,7 +64,7 @@ "geo_location":{ "city":"San Francisco", "country":"US", - "ip_address":"{\"scope\":\"dropbox\",\"hash\":\"QDBlIncZwcFCcfu1eUyy-EbjkqIOptGw3CrY5zWS14Y\"}", + "ip_address":"{\"hash\":\"QDBlIncZwcFCcfu1eUyy-EbjkqIOptGw3CrY5zWS14Y\"}", "region":"California" } }, @@ -73,8 +73,8 @@ ".tag":"user", "user":{ ".tag":"non_team_member", - "account_id":"{\"scope\":\"dropbox\",\"hash\":\"nETDYw6dYz075n1mDbwGnz8nMxuiALmT_Oqr3C-r0Cs\"}", - "email":"{\"scope\":\"email\",\"domain\":\"acmecorp.com\",\"hash\":\"jPsuAFufkXB7XPGbISEkJ9heWB2428ynP4uU0limWLY\"}" + "account_id":"{\"hash\":\"nETDYw6dYz075n1mDbwGnz8nMxuiALmT_Oqr3C-r0Cs\"}", + "email":"{\"domain\":\"acmecorp.com\",\"hash\":\"jPsuAFufkXB7XPGbISEkJ9heWB2428ynP4uU0limWLY\"}" } } ], diff --git a/docs/sources/dropbox-business/example-api-responses/sanitized/file_list.json b/docs/sources/dropbox-business/example-api-responses/sanitized/file_list.json index 3ad44d46c..2e89eed4b 100644 --- a/docs/sources/dropbox-business/example-api-responses/sanitized/file_list.json +++ b/docs/sources/dropbox-business/example-api-responses/sanitized/file_list.json @@ -25,7 +25,7 @@ "rev":"a1c10ce0dd78", "server_modified":"2015-05-12T15:50:38Z", "sharing_info":{ - "modified_by":"{\"scope\":\"dropbox\",\"hash\":\"jZhmTOhV_8tNq3E_tPSJblmnPYNERff__TX5uh6HBG8\"}", + "modified_by":"{\"hash\":\"jZhmTOhV_8tNq3E_tPSJblmnPYNERff__TX5uh6HBG8\"}", "parent_shared_folder_id":"84528192421", "read_only":true }, diff --git a/docs/sources/dropbox-business/example-api-responses/sanitized/file_list_continue.json b/docs/sources/dropbox-business/example-api-responses/sanitized/file_list_continue.json index 3ad44d46c..2e89eed4b 100644 --- a/docs/sources/dropbox-business/example-api-responses/sanitized/file_list_continue.json +++ b/docs/sources/dropbox-business/example-api-responses/sanitized/file_list_continue.json @@ -25,7 +25,7 @@ "rev":"a1c10ce0dd78", "server_modified":"2015-05-12T15:50:38Z", "sharing_info":{ - "modified_by":"{\"scope\":\"dropbox\",\"hash\":\"jZhmTOhV_8tNq3E_tPSJblmnPYNERff__TX5uh6HBG8\"}", + "modified_by":"{\"hash\":\"jZhmTOhV_8tNq3E_tPSJblmnPYNERff__TX5uh6HBG8\"}", "parent_shared_folder_id":"84528192421", "read_only":true }, diff --git a/docs/sources/dropbox-business/example-api-responses/sanitized/file_list_revision.json b/docs/sources/dropbox-business/example-api-responses/sanitized/file_list_revision.json index 299378091..8411a00cd 100644 --- a/docs/sources/dropbox-business/example-api-responses/sanitized/file_list_revision.json +++ b/docs/sources/dropbox-business/example-api-responses/sanitized/file_list_revision.json @@ -23,7 +23,7 @@ "rev":"a1c10ce0dd78", "server_modified":"2015-05-12T15:50:38Z", "sharing_info":{ - "modified_by":"{\"scope\":\"dropbox\",\"hash\":\"jZhmTOhV_8tNq3E_tPSJblmnPYNERff__TX5uh6HBG8\"}", + "modified_by":"{\"hash\":\"jZhmTOhV_8tNq3E_tPSJblmnPYNERff__TX5uh6HBG8\"}", "parent_shared_folder_id":"84528192421", "read_only":true }, diff --git a/docs/sources/dropbox-business/example-api-responses/sanitized/member_list.json b/docs/sources/dropbox-business/example-api-responses/sanitized/member_list.json index 95f8dc1be..6b951a096 100644 --- a/docs/sources/dropbox-business/example-api-responses/sanitized/member_list.json +++ b/docs/sources/dropbox-business/example-api-responses/sanitized/member_list.json @@ -4,8 +4,8 @@ "members":[ { "profile":{ - "account_id":"{\"scope\":\"dropbox\",\"hash\":\"jZhmTOhV_8tNq3E_tPSJblmnPYNERff__TX5uh6HBG8\"}", - "email":"{\"scope\":\"email\",\"domain\":\"seagull.com\",\"hash\":\"3hBvYidwm7M3dr99AXtSl-XoLLdz7zv7Q6wAoLQlCVU\"}", + "account_id":"{\"hash\":\"jZhmTOhV_8tNq3E_tPSJblmnPYNERff__TX5uh6HBG8\"}", + "email":"{\"domain\":\"seagull.com\",\"hash\":\"3hBvYidwm7M3dr99AXtSl-XoLLdz7zv7Q6wAoLQlCVU\"}", "email_verified":false, "external_id":"244423", "groups":[ @@ -19,11 +19,11 @@ "name":{ }, "secondary_emails":[ { - "email":"{\"scope\":\"email\",\"domain\":\"strawberry.com\",\"hash\":\"SDocf39ydRQwm4B-qkfkodf8vgjoY_ormOShRpnPExs\"}", + "email":"{\"domain\":\"strawberry.com\",\"hash\":\"SDocf39ydRQwm4B-qkfkodf8vgjoY_ormOShRpnPExs\"}", "is_verified":false }, { - "email":"{\"scope\":\"email\",\"domain\":\"orange.com\",\"hash\":\"oJHymm_W3TQ9P3nUA3Ef9DuQE_7D2uiedo68_yL03oM\"}", + "email":"{\"domain\":\"orange.com\",\"hash\":\"oJHymm_W3TQ9P3nUA3Ef9DuQE_7D2uiedo68_yL03oM\"}", "is_verified":true } ], diff --git a/docs/sources/dropbox-business/example-api-responses/sanitized/member_list_continue.json b/docs/sources/dropbox-business/example-api-responses/sanitized/member_list_continue.json index 95f8dc1be..6b951a096 100644 --- a/docs/sources/dropbox-business/example-api-responses/sanitized/member_list_continue.json +++ b/docs/sources/dropbox-business/example-api-responses/sanitized/member_list_continue.json @@ -4,8 +4,8 @@ "members":[ { "profile":{ - "account_id":"{\"scope\":\"dropbox\",\"hash\":\"jZhmTOhV_8tNq3E_tPSJblmnPYNERff__TX5uh6HBG8\"}", - "email":"{\"scope\":\"email\",\"domain\":\"seagull.com\",\"hash\":\"3hBvYidwm7M3dr99AXtSl-XoLLdz7zv7Q6wAoLQlCVU\"}", + "account_id":"{\"hash\":\"jZhmTOhV_8tNq3E_tPSJblmnPYNERff__TX5uh6HBG8\"}", + "email":"{\"domain\":\"seagull.com\",\"hash\":\"3hBvYidwm7M3dr99AXtSl-XoLLdz7zv7Q6wAoLQlCVU\"}", "email_verified":false, "external_id":"244423", "groups":[ @@ -19,11 +19,11 @@ "name":{ }, "secondary_emails":[ { - "email":"{\"scope\":\"email\",\"domain\":\"strawberry.com\",\"hash\":\"SDocf39ydRQwm4B-qkfkodf8vgjoY_ormOShRpnPExs\"}", + "email":"{\"domain\":\"strawberry.com\",\"hash\":\"SDocf39ydRQwm4B-qkfkodf8vgjoY_ormOShRpnPExs\"}", "is_verified":false }, { - "email":"{\"scope\":\"email\",\"domain\":\"orange.com\",\"hash\":\"oJHymm_W3TQ9P3nUA3Ef9DuQE_7D2uiedo68_yL03oM\"}", + "email":"{\"domain\":\"orange.com\",\"hash\":\"oJHymm_W3TQ9P3nUA3Ef9DuQE_7D2uiedo68_yL03oM\"}", "is_verified":true } ], diff --git a/docs/sources/github/example-api-responses/sanitized/comment_reactions.json b/docs/sources/github/example-api-responses/sanitized/comment_reactions.json index 8c10c0750..ab3646ca8 100644 --- a/docs/sources/github/example-api-responses/sanitized/comment_reactions.json +++ b/docs/sources/github/example-api-responses/sanitized/comment_reactions.json @@ -4,8 +4,8 @@ "node_id":"MDg6UmVhY3Rpb24x", "user":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"1VKGuhHSdNUHxEIHEhOrhqllHCSp0iw55aCcwqpu3J4\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"1VKGuhHSdNUHxEIHEhOrhqllHCSp0iw55aCcwqpu3J4\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, diff --git a/docs/sources/github/example-api-responses/sanitized/commit.json b/docs/sources/github/example-api-responses/sanitized/commit.json index c2c59c2d6..26f1b0156 100644 --- a/docs/sources/github/example-api-responses/sanitized/commit.json +++ b/docs/sources/github/example-api-responses/sanitized/commit.json @@ -7,11 +7,11 @@ "commit":{ "url":"https://api.github.com/repos/org/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e", "author":{ - "email":"{\"scope\":\"email\",\"domain\":\"github.com\",\"hash\":\"39uRnKxs0PYIueRoGGc7fyyp-hSTtamEhvB6YywFNVM\"}", + "email":"{\"domain\":\"github.com\",\"hash\":\"39uRnKxs0PYIueRoGGc7fyyp-hSTtamEhvB6YywFNVM\"}", "date":"2011-04-14T16:00:49Z" }, "committer":{ - "email":"{\"scope\":\"email\",\"domain\":\"github.com\",\"hash\":\"39uRnKxs0PYIueRoGGc7fyyp-hSTtamEhvB6YywFNVM\"}", + "email":"{\"domain\":\"github.com\",\"hash\":\"39uRnKxs0PYIueRoGGc7fyyp-hSTtamEhvB6YywFNVM\"}", "date":"2011-04-14T16:00:49Z" }, "tree":{ @@ -26,15 +26,15 @@ }, "author":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, "committer":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, @@ -49,4 +49,4 @@ "deletions":4, "total":108 } -} \ No newline at end of file +} diff --git a/docs/sources/github/example-api-responses/sanitized/commit_comments.json b/docs/sources/github/example-api-responses/sanitized/commit_comments.json index bf2d79932..b725352c5 100644 --- a/docs/sources/github/example-api-responses/sanitized/commit_comments.json +++ b/docs/sources/github/example-api-responses/sanitized/commit_comments.json @@ -7,8 +7,8 @@ "commit_id":"6dcb09b5b57875f334f61aebed695e2e4193db5e", "user":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, diff --git a/docs/sources/github/example-api-responses/sanitized/graph_api_users_members.json b/docs/sources/github/example-api-responses/sanitized/graph_api_users_members.json index f09947b8c..33e512486 100644 --- a/docs/sources/github/example-api-responses/sanitized/graph_api_users_members.json +++ b/docs/sources/github/example-api-responses/sanitized/graph_api_users_members.json @@ -5,16 +5,16 @@ "edges":[ { "node":{ - "email":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"2cclTmgvAaaNoY_a3YFJVu1UUmwFw1MX9nrrF6oH9tM\"}", + "email":"{\"domain\":\"contoso.com\",\"hash\":\"2cclTmgvAaaNoY_a3YFJVu1UUmwFw1MX9nrrF6oH9tM\"}", "login":"p~MsZ4qsVoj0TU_io4Cz9mnMBWrZkfI89B-8qznWvl83mYA56fU9HQ_fR3fOvcTHkx", "organizationVerifiedDomainEmails":[ - "{\"scope\":\"email\",\"domain\":\"verified.contoso.com\",\"hash\":\"_4ek18OM1Bqzf9GAql4c5Aj5q_QL8twXPufhwABSztg\"}" + "{\"domain\":\"verified.contoso.com\",\"hash\":\"_4ek18OM1Bqzf9GAql4c5Aj5q_QL8twXPufhwABSztg\"}" ] } }, { "node":{ - "email":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"OS0ifbJZXKTBbeGUlEbyacwWGTxBMkrAWSSbcy2OKmA\"}", + "email":"{\"domain\":\"contoso.com\",\"hash\":\"OS0ifbJZXKTBbeGUlEbyacwWGTxBMkrAWSSbcy2OKmA\"}", "login":"p~IfCQZlVaWKPjwpZn6GtislWJJ2ehfSnlyyONl2LdgTAaP2EggmLxGUnmFuzNnZlY", "organizationVerifiedDomainEmails":[ ] } diff --git a/docs/sources/github/example-api-responses/sanitized/graph_api_users_saml.json b/docs/sources/github/example-api-responses/sanitized/graph_api_users_saml.json index acc10bd81..2a89a773d 100644 --- a/docs/sources/github/example-api-responses/sanitized/graph_api_users_saml.json +++ b/docs/sources/github/example-api-responses/sanitized/graph_api_users_saml.json @@ -10,12 +10,12 @@ "edges":[ { "node":{ - "guid":"{\"scope\":\"github\",\"hash\":\"5yFLE9_eWMz8YE8Fp1Li0TuYIh_eP5WfzjogeJVfLsg\"}", + "guid":"{\"hash\":\"5yFLE9_eWMz8YE8Fp1Li0TuYIh_eP5WfzjogeJVfLsg\"}", "samlIdentity":{ - "nameId":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"2cclTmgvAaaNoY_a3YFJVu1UUmwFw1MX9nrrF6oH9tM\"}", + "nameId":"{\"domain\":\"contoso.com\",\"hash\":\"2cclTmgvAaaNoY_a3YFJVu1UUmwFw1MX9nrrF6oH9tM\"}", "emails":[ { - "value":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"tJeMjd4Zz84TzbzdvLTpWPg1z3gf-5Icpqv7Cbg_c2c\"}" + "value":"{\"domain\":\"contoso.com\",\"hash\":\"tJeMjd4Zz84TzbzdvLTpWPg1z3gf-5Icpqv7Cbg_c2c\"}" } ] }, @@ -26,9 +26,9 @@ }, { "node":{ - "guid":"{\"scope\":\"github\",\"hash\":\"rhadwfw52P0hheXmNWvS3KkJavv5p_7Zx7fAac0BjHw\"}", + "guid":"{\"hash\":\"rhadwfw52P0hheXmNWvS3KkJavv5p_7Zx7fAac0BjHw\"}", "samlIdentity":{ - "nameId":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"OS0ifbJZXKTBbeGUlEbyacwWGTxBMkrAWSSbcy2OKmA\"}" + "nameId":"{\"domain\":\"contoso.com\",\"hash\":\"OS0ifbJZXKTBbeGUlEbyacwWGTxBMkrAWSSbcy2OKmA\"}" }, "user":{ "login":"p~IfCQZlVaWKPjwpZn6GtislWJJ2ehfSnlyyONl2LdgTAaP2EggmLxGUnmFuzNnZlY" @@ -40,4 +40,4 @@ } } } -} \ No newline at end of file +} diff --git a/docs/sources/github/example-api-responses/sanitized/issue.json b/docs/sources/github/example-api-responses/sanitized/issue.json index 311c5877e..a2ad7f26b 100644 --- a/docs/sources/github/example-api-responses/sanitized/issue.json +++ b/docs/sources/github/example-api-responses/sanitized/issue.json @@ -11,8 +11,8 @@ "state":"open", "user":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, @@ -27,16 +27,16 @@ ], "assignee":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, "assignees":[ { "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false } @@ -51,8 +51,8 @@ "state":"open", "creator":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, @@ -77,8 +77,8 @@ "updated_at":"2011-04-22T13:33:48Z", "closed_by":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, diff --git a/docs/sources/github/example-api-responses/sanitized/issue_events.json b/docs/sources/github/example-api-responses/sanitized/issue_events.json index 53a53808a..700df4527 100644 --- a/docs/sources/github/example-api-responses/sanitized/issue_events.json +++ b/docs/sources/github/example-api-responses/sanitized/issue_events.json @@ -4,8 +4,8 @@ "node_id":"MDEwOklzc3VlRXZlbnQx", "actor":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, diff --git a/docs/sources/github/example-api-responses/sanitized/issue_timeline.json b/docs/sources/github/example-api-responses/sanitized/issue_timeline.json index bc840223c..b1b741031 100644 --- a/docs/sources/github/example-api-responses/sanitized/issue_timeline.json +++ b/docs/sources/github/example-api-responses/sanitized/issue_timeline.json @@ -4,11 +4,11 @@ "node_id":"C_kwDOKU_SqtoAKDY2MjQ5YzgzOTE0ZTdhZDhlOTk3NmVlZGVkZGEwNjliOTM2ZWU0MjY", "html_url":"https://github.com/khnum-heket/test2/commit/66249c83914e7ad8e9976eededda069b936ee426", "author":{ - "email":"{\"scope\":\"email\",\"domain\":\"some-domain.com\",\"hash\":\"h6PdMetXUw2gjVVsnjSgAXCBCSbTAHOAwIlrzYyylKo\"}", + "email":"{\"domain\":\"some-domain.com\",\"hash\":\"h6PdMetXUw2gjVVsnjSgAXCBCSbTAHOAwIlrzYyylKo\"}", "date":"2023-09-18T10:46:54Z" }, "committer":{ - "email":"{\"scope\":\"email\",\"domain\":\"github.com\",\"hash\":\"MIHgBni75cZjiHCpj2v957zYWWKML5xc_Zu-0HvVQ2w\"}", + "email":"{\"domain\":\"github.com\",\"hash\":\"MIHgBni75cZjiHCpj2v957zYWWKML5xc_Zu-0HvVQ2w\"}", "date":"2023-09-18T10:46:54Z" }, "tree":{ @@ -31,8 +31,8 @@ "node_id":"LOE_lADODwFebM5HwC0kzwAAAAF_RoSA", "actor":{ "login":"p~ZDdmVplwpGt-ndiFTEd48w48N7HJOo69xHBBmO9DI2JT6M_X-qOTr1g7XSHLY88x", - "id":"{\"scope\":\"github\",\"hash\":\"C1pwy6O6wHT7VCJRNw5JSAlIKuGDb3HDxkc0URHm1zQ\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"JvTIGMW1yFX6BhvmbFrOVQ5H1z7SO2lfbPlkB_4rlzc\"}", + "id":"{\"hash\":\"C1pwy6O6wHT7VCJRNw5JSAlIKuGDb3HDxkc0URHm1zQ\"}", + "node_id":"{\"hash\":\"JvTIGMW1yFX6BhvmbFrOVQ5H1z7SO2lfbPlkB_4rlzc\"}", "type":"Organization", "site_admin":false }, @@ -48,8 +48,8 @@ "node_id":"LE_lADODwFebM5HwC0kzwAAAAF_Roqs", "actor":{ "login":"p~nugAVvYwYXkW7Lu0C8eVb8HeQmAlzbInT2WT9-Vjr3scfqTA3SmegyRgtxuiR3lUIV5p8z3z9sNVmOTR74sHKA", - "id":"{\"scope\":\"github\",\"hash\":\"BCpu8EenbtOGYWLUQoH22P9u3Hei3rcaIMwxE9pIxr0\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"xxNmyG-rm_H9EQ0yo4PiBiFuSuitlA-5h3kNtjRjrls\"}", + "id":"{\"hash\":\"BCpu8EenbtOGYWLUQoH22P9u3Hei3rcaIMwxE9pIxr0\"}", + "node_id":"{\"hash\":\"xxNmyG-rm_H9EQ0yo4PiBiFuSuitlA-5h3kNtjRjrls\"}", "type":"User", "site_admin":false }, @@ -67,8 +67,8 @@ "node_id":"RTE_lADODwFebM5HwC0kzwAAAAGLfJhq", "actor":{ "login":"p~nugAVvYwYXkW7Lu0C8eVb8HeQmAlzbInT2WT9-Vjr3scfqTA3SmegyRgtxuiR3lUIV5p8z3z9sNVmOTR74sHKA", - "id":"{\"scope\":\"github\",\"hash\":\"BCpu8EenbtOGYWLUQoH22P9u3Hei3rcaIMwxE9pIxr0\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"xxNmyG-rm_H9EQ0yo4PiBiFuSuitlA-5h3kNtjRjrls\"}", + "id":"{\"hash\":\"BCpu8EenbtOGYWLUQoH22P9u3Hei3rcaIMwxE9pIxr0\"}", + "node_id":"{\"hash\":\"xxNmyG-rm_H9EQ0yo4PiBiFuSuitlA-5h3kNtjRjrls\"}", "type":"User", "site_admin":false }, @@ -85,8 +85,8 @@ "node_id":"IC_kwDODwFebM5DZ8-5", "user":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"YW8DUgSVdjPT832gPzR5orzqfDyytNXPlk80y9PT3J0\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"yYOYDm3DmI6R6GgoBDc7I1Y7Ec3qzsWt-xF6_EI-C8U\"}", + "id":"{\"hash\":\"YW8DUgSVdjPT832gPzR5orzqfDyytNXPlk80y9PT3J0\"}", + "node_id":"{\"hash\":\"yYOYDm3DmI6R6GgoBDc7I1Y7Ec3qzsWt-xF6_EI-C8U\"}", "type":"User", "site_admin":true }, @@ -108,8 +108,8 @@ "event":"commented", "actor":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"YW8DUgSVdjPT832gPzR5orzqfDyytNXPlk80y9PT3J0\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"yYOYDm3DmI6R6GgoBDc7I1Y7Ec3qzsWt-xF6_EI-C8U\"}", + "id":"{\"hash\":\"YW8DUgSVdjPT832gPzR5orzqfDyytNXPlk80y9PT3J0\"}", + "node_id":"{\"hash\":\"yYOYDm3DmI6R6GgoBDc7I1Y7Ec3qzsWt-xF6_EI-C8U\"}", "type":"User", "site_admin":true } @@ -119,8 +119,8 @@ "node_id":"RRE_lADOGF_7K85wUBeSzwAAAAJly0ti", "actor":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"YW8DUgSVdjPT832gPzR5orzqfDyytNXPlk80y9PT3J0\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"yYOYDm3DmI6R6GgoBDc7I1Y7Ec3qzsWt-xF6_EI-C8U\"}", + "id":"{\"hash\":\"YW8DUgSVdjPT832gPzR5orzqfDyytNXPlk80y9PT3J0\"}", + "node_id":"{\"hash\":\"yYOYDm3DmI6R6GgoBDc7I1Y7Ec3qzsWt-xF6_EI-C8U\"}", "type":"User", "site_admin":true }, @@ -130,18 +130,18 @@ "created_at":"2023-09-06T15:46:55Z", "review_requester":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"YW8DUgSVdjPT832gPzR5orzqfDyytNXPlk80y9PT3J0\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"yYOYDm3DmI6R6GgoBDc7I1Y7Ec3qzsWt-xF6_EI-C8U\"}", + "id":"{\"hash\":\"YW8DUgSVdjPT832gPzR5orzqfDyytNXPlk80y9PT3J0\"}", + "node_id":"{\"hash\":\"yYOYDm3DmI6R6GgoBDc7I1Y7Ec3qzsWt-xF6_EI-C8U\"}", "type":"User", "site_admin":true }, "requested_reviewer":{ "login":"p~KWW-U36Jy95xooasPNc1hK3lODgmlQbJ12d04oeHMEen7KL3JZnIg32WYqugl1FG", - "id":"{\"scope\":\"github\",\"hash\":\"YW8DUgSVdjPT832gPzR5orzqfDyytNXPlk80y9PT3J0\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"yYOYDm3DmI6R6GgoBDc7I1Y7Ec3qzsWt-xF6_EI-C8U\"}", + "id":"{\"hash\":\"YW8DUgSVdjPT832gPzR5orzqfDyytNXPlk80y9PT3J0\"}", + "node_id":"{\"hash\":\"yYOYDm3DmI6R6GgoBDc7I1Y7Ec3qzsWt-xF6_EI-C8U\"}", "type":"User", "site_admin":true }, "performed_via_github_app":null } -] \ No newline at end of file +] diff --git a/docs/sources/github/example-api-responses/sanitized/issues.json b/docs/sources/github/example-api-responses/sanitized/issues.json index 3cf00b5ed..fbd3613f5 100644 --- a/docs/sources/github/example-api-responses/sanitized/issues.json +++ b/docs/sources/github/example-api-responses/sanitized/issues.json @@ -12,8 +12,8 @@ "state":"open", "user":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, @@ -28,16 +28,16 @@ ], "assignee":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, "assignees":[ { "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false } @@ -52,8 +52,8 @@ "state":"open", "creator":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, @@ -78,8 +78,8 @@ "updated_at":"2011-04-22T13:33:48Z", "closed_by":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, diff --git a/docs/sources/github/example-api-responses/sanitized/issues_comments.json b/docs/sources/github/example-api-responses/sanitized/issues_comments.json index ca508076b..bb43ef37e 100644 --- a/docs/sources/github/example-api-responses/sanitized/issues_comments.json +++ b/docs/sources/github/example-api-responses/sanitized/issues_comments.json @@ -5,8 +5,8 @@ "html_url":"https://github.com/org/Hello-World/issues/1347#issuecomment-1", "user":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, diff --git a/docs/sources/github/example-api-responses/sanitized/issues_comments_reactions.json b/docs/sources/github/example-api-responses/sanitized/issues_comments_reactions.json index 8c10c0750..ab3646ca8 100644 --- a/docs/sources/github/example-api-responses/sanitized/issues_comments_reactions.json +++ b/docs/sources/github/example-api-responses/sanitized/issues_comments_reactions.json @@ -4,8 +4,8 @@ "node_id":"MDg6UmVhY3Rpb24x", "user":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"1VKGuhHSdNUHxEIHEhOrhqllHCSp0iw55aCcwqpu3J4\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"1VKGuhHSdNUHxEIHEhOrhqllHCSp0iw55aCcwqpu3J4\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, diff --git a/docs/sources/github/example-api-responses/sanitized/issues_reactions.json b/docs/sources/github/example-api-responses/sanitized/issues_reactions.json index 8c10c0750..ab3646ca8 100644 --- a/docs/sources/github/example-api-responses/sanitized/issues_reactions.json +++ b/docs/sources/github/example-api-responses/sanitized/issues_reactions.json @@ -4,8 +4,8 @@ "node_id":"MDg6UmVhY3Rpb24x", "user":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"1VKGuhHSdNUHxEIHEhOrhqllHCSp0iw55aCcwqpu3J4\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"1VKGuhHSdNUHxEIHEhOrhqllHCSp0iw55aCcwqpu3J4\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, diff --git a/docs/sources/github/example-api-responses/sanitized/org_audit_log.json b/docs/sources/github/example-api-responses/sanitized/org_audit_log.json index 59010a2f9..9d225528f 100644 --- a/docs/sources/github/example-api-responses/sanitized/org_audit_log.json +++ b/docs/sources/github/example-api-responses/sanitized/org_audit_log.json @@ -2,7 +2,7 @@ { "@timestamp":1688668100859, "action":"git.push", - "actor":"{\"scope\":\"github\",\"hash\":\"IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbM\"}", + "actor":"{\"hash\":\"IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbM\"}", "actor_location":{ "country_code":"GB" }, @@ -17,7 +17,7 @@ { "@timestamp":1688668100244, "action":"git.push", - "actor":"{\"scope\":\"github\",\"hash\":\"IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbM\"}", + "actor":"{\"hash\":\"IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbM\"}", "actor_location":{ "country_code":"GB" }, @@ -33,7 +33,7 @@ "@timestamp":1688667848231, "_document_id":"wNeUMoUP4j8RgRjpMg6YaQ", "action":"pull_request.merge", - "actor":"{\"scope\":\"github\",\"hash\":\"IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbM\"}", + "actor":"{\"hash\":\"IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbM\"}", "actor_id":13968776, "actor_location":{ "country_code":"ES" @@ -47,7 +47,7 @@ "pull_request_url":"https://github.com/some-org/test/pull/1", "repo":"some-org/test", "repository":"some-org/test", - "user":"{\"scope\":\"github\",\"hash\":\"IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbM\"}", + "user":"{\"hash\":\"IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbM\"}", "user_id":13968776 } ] diff --git a/docs/sources/github/example-api-responses/sanitized/org_members.json b/docs/sources/github/example-api-responses/sanitized/org_members.json index ee6195786..d6c310a8b 100644 --- a/docs/sources/github/example-api-responses/sanitized/org_members.json +++ b/docs/sources/github/example-api-responses/sanitized/org_members.json @@ -1,8 +1,8 @@ [ { "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false } diff --git a/docs/sources/github/example-api-responses/sanitized/pull.json b/docs/sources/github/example-api-responses/sanitized/pull.json index 1e2f6df36..cc30fdf81 100644 --- a/docs/sources/github/example-api-responses/sanitized/pull.json +++ b/docs/sources/github/example-api-responses/sanitized/pull.json @@ -16,8 +16,8 @@ "locked":true, "user":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, @@ -40,8 +40,8 @@ "state":"open", "creator":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, @@ -60,23 +60,23 @@ "merge_commit_sha":"e5bd3914e2e596debea16f433f57875b5b90bcd6", "assignee":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, "assignees":[ { "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, { "login":"p~sOof76KBpOsJ71ccq9bercUbYZTR7eTnQ0Smpi7tVygxKZcG8gPjG08P-BbzxpnM", - "id":"{\"scope\":\"github\",\"hash\":\"v7Z-ehXfq2i-LsZJjw-sjU0LGneaSHEfBst_EAEKT2E\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"v7Z-ehXfq2i-LsZJjw-sjU0LGneaSHEfBst_EAEKT2E\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":true } @@ -84,8 +84,8 @@ "requested_reviewers":[ { "login":"p~8pySdSARC4G6QQVNf3K170KQuWS6OnRRNNbyKK4kGMjbgPbvTeWJ-AChe5PiOp4e", - "id":"{\"scope\":\"github\",\"hash\":\"jgCPf-blZxFCeeiM5pPp5h42QdyvpGm38CPIVEs6Vgc\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"jgCPf-blZxFCeeiM5pPp5h42QdyvpGm38CPIVEs6Vgc\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false } @@ -110,8 +110,8 @@ "sha":"6dcb09b5b57875f334f61aebed695e2e4193db5e", "user":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, @@ -121,8 +121,8 @@ "full_name":"octocat/Hello-World", "owner":{ "login":"p~H9fGSnd9B7j_NOqJ1kuSliuDmbwKdocqeSgBeWM-dXNfCB1oPNJpnhWDK_yTdosL", - "id":"{\"scope\":\"github\",\"hash\":\"krWVhOZqUPcqJwb8-8IWt6GrPcxZMIU_ozcTGatwS64\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"krWVhOZqUPcqJwb8-8IWt6GrPcxZMIU_ozcTGatwS64\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"Organization", "site_admin":false }, @@ -222,8 +222,8 @@ "sha":"6dcb09b5b57875f334f61aebed695e2e4193db5e", "user":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, @@ -233,8 +233,8 @@ "full_name":"octocat/Hello-World", "owner":{ "login":"p~H9fGSnd9B7j_NOqJ1kuSliuDmbwKdocqeSgBeWM-dXNfCB1oPNJpnhWDK_yTdosL", - "id":"{\"scope\":\"github\",\"hash\":\"krWVhOZqUPcqJwb8-8IWt6GrPcxZMIU_ozcTGatwS64\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"krWVhOZqUPcqJwb8-8IWt6GrPcxZMIU_ozcTGatwS64\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"Organization", "site_admin":false }, @@ -362,8 +362,8 @@ "mergeable_state":"clean", "merged_by":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, diff --git a/docs/sources/github/example-api-responses/sanitized/pull_comments.json b/docs/sources/github/example-api-responses/sanitized/pull_comments.json index a583d25d2..c3792ac31 100644 --- a/docs/sources/github/example-api-responses/sanitized/pull_comments.json +++ b/docs/sources/github/example-api-responses/sanitized/pull_comments.json @@ -11,8 +11,8 @@ "in_reply_to_id":8, "user":{ "login":"p~E9mJyHvRHfGqXxImuUuTlHddbcjrRSOBItcF2cUkFUAH5Z9Z3LdF2qUAzaGcl-9Q", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, diff --git a/docs/sources/github/example-api-responses/sanitized/pull_commits.json b/docs/sources/github/example-api-responses/sanitized/pull_commits.json index a4be94811..96d880cad 100644 --- a/docs/sources/github/example-api-responses/sanitized/pull_commits.json +++ b/docs/sources/github/example-api-responses/sanitized/pull_commits.json @@ -8,11 +8,11 @@ "commit":{ "url":"https://api.github.com/repos/org/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e", "author":{ - "email":"{\"scope\":\"email\",\"domain\":\"github.com\",\"hash\":\"Qf8SCDEia8HLukuc9q_o28p5sitMHYYRV3ZQiOVZfEI\"}", + "email":"{\"domain\":\"github.com\",\"hash\":\"Qf8SCDEia8HLukuc9q_o28p5sitMHYYRV3ZQiOVZfEI\"}", "date":"2011-04-14T16:00:49Z" }, "committer":{ - "email":"{\"scope\":\"email\",\"domain\":\"github.com\",\"hash\":\"Qf8SCDEia8HLukuc9q_o28p5sitMHYYRV3ZQiOVZfEI\"}", + "email":"{\"domain\":\"github.com\",\"hash\":\"Qf8SCDEia8HLukuc9q_o28p5sitMHYYRV3ZQiOVZfEI\"}", "date":"2011-04-14T16:00:49Z" }, "tree":{ @@ -27,15 +27,15 @@ }, "author":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, "committer":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, diff --git a/docs/sources/github/example-api-responses/sanitized/pull_review_comments.json b/docs/sources/github/example-api-responses/sanitized/pull_review_comments.json index c94d19f12..b71071b38 100644 --- a/docs/sources/github/example-api-responses/sanitized/pull_review_comments.json +++ b/docs/sources/github/example-api-responses/sanitized/pull_review_comments.json @@ -11,8 +11,8 @@ "in_reply_to_id":8, "user":{ "login":"p~E9mJyHvRHfGqXxImuUuTlHddbcjrRSOBItcF2cUkFUAH5Z9Z3LdF2qUAzaGcl-9Q", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, diff --git a/docs/sources/github/example-api-responses/sanitized/pull_reviews.json b/docs/sources/github/example-api-responses/sanitized/pull_reviews.json index cf5a15303..a7b13c636 100644 --- a/docs/sources/github/example-api-responses/sanitized/pull_reviews.json +++ b/docs/sources/github/example-api-responses/sanitized/pull_reviews.json @@ -4,8 +4,8 @@ "node_id":"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=", "user":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, diff --git a/docs/sources/github/example-api-responses/sanitized/pulls.json b/docs/sources/github/example-api-responses/sanitized/pulls.json index 2f8965014..6ea57760d 100644 --- a/docs/sources/github/example-api-responses/sanitized/pulls.json +++ b/docs/sources/github/example-api-responses/sanitized/pulls.json @@ -16,8 +16,8 @@ "locked":true, "user":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, @@ -38,8 +38,8 @@ "state":"open", "creator":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, @@ -58,23 +58,23 @@ "merge_commit_sha":"e5bd3914e2e596debea16f433f57875b5b90bcd6", "assignee":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, "assignees":[ { "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, { "login":"p~sOof76KBpOsJ71ccq9bercUbYZTR7eTnQ0Smpi7tVygxKZcG8gPjG08P-BbzxpnM", - "id":"{\"scope\":\"github\",\"hash\":\"v7Z-ehXfq2i-LsZJjw-sjU0LGneaSHEfBst_EAEKT2E\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"v7Z-ehXfq2i-LsZJjw-sjU0LGneaSHEfBst_EAEKT2E\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":true } @@ -82,8 +82,8 @@ "requested_reviewers":[ { "login":"p~8pySdSARC4G6QQVNf3K170KQuWS6OnRRNNbyKK4kGMjbgPbvTeWJ-AChe5PiOp4e", - "id":"{\"scope\":\"github\",\"hash\":\"jgCPf-blZxFCeeiM5pPp5h42QdyvpGm38CPIVEs6Vgc\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"jgCPf-blZxFCeeiM5pPp5h42QdyvpGm38CPIVEs6Vgc\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false } @@ -108,8 +108,8 @@ "sha":"6dcb09b5b57875f334f61aebed695e2e4193db5e", "user":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, @@ -119,8 +119,8 @@ "full_name":"octocat/Hello-World", "owner":{ "login":"p~H9fGSnd9B7j_NOqJ1kuSliuDmbwKdocqeSgBeWM-dXNfCB1oPNJpnhWDK_yTdosL", - "id":"{\"scope\":\"github\",\"hash\":\"H77wUJKd7KSkBy8isl5E1cTCBWBW8cG5uYE87NYu7To\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"H77wUJKd7KSkBy8isl5E1cTCBWBW8cG5uYE87NYu7To\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"Organization", "site_admin":false }, @@ -224,8 +224,8 @@ "sha":"6dcb09b5b57875f334f61aebed695e2e4193db5e", "user":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, @@ -235,8 +235,8 @@ "full_name":"octocat/Hello-World", "owner":{ "login":"p~H9fGSnd9B7j_NOqJ1kuSliuDmbwKdocqeSgBeWM-dXNfCB1oPNJpnhWDK_yTdosL", - "id":"{\"scope\":\"github\",\"hash\":\"H77wUJKd7KSkBy8isl5E1cTCBWBW8cG5uYE87NYu7To\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"H77wUJKd7KSkBy8isl5E1cTCBWBW8cG5uYE87NYu7To\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"Organization", "site_admin":false }, diff --git a/docs/sources/github/example-api-responses/sanitized/repo_commits.json b/docs/sources/github/example-api-responses/sanitized/repo_commits.json index a4be94811..96d880cad 100644 --- a/docs/sources/github/example-api-responses/sanitized/repo_commits.json +++ b/docs/sources/github/example-api-responses/sanitized/repo_commits.json @@ -8,11 +8,11 @@ "commit":{ "url":"https://api.github.com/repos/org/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e", "author":{ - "email":"{\"scope\":\"email\",\"domain\":\"github.com\",\"hash\":\"Qf8SCDEia8HLukuc9q_o28p5sitMHYYRV3ZQiOVZfEI\"}", + "email":"{\"domain\":\"github.com\",\"hash\":\"Qf8SCDEia8HLukuc9q_o28p5sitMHYYRV3ZQiOVZfEI\"}", "date":"2011-04-14T16:00:49Z" }, "committer":{ - "email":"{\"scope\":\"email\",\"domain\":\"github.com\",\"hash\":\"Qf8SCDEia8HLukuc9q_o28p5sitMHYYRV3ZQiOVZfEI\"}", + "email":"{\"domain\":\"github.com\",\"hash\":\"Qf8SCDEia8HLukuc9q_o28p5sitMHYYRV3ZQiOVZfEI\"}", "date":"2011-04-14T16:00:49Z" }, "tree":{ @@ -27,15 +27,15 @@ }, "author":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, "committer":{ "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false }, diff --git a/docs/sources/github/example-api-responses/sanitized/repo_events.json b/docs/sources/github/example-api-responses/sanitized/repo_events.json index 41048c756..9d627dbbc 100644 --- a/docs/sources/github/example-api-responses/sanitized/repo_events.json +++ b/docs/sources/github/example-api-responses/sanitized/repo_events.json @@ -3,7 +3,7 @@ "id":"22249084964", "type":"PushEvent", "actor":{ - "id":"{\"scope\":\"github\",\"hash\":\"mWRxENiVY9pLcd6BNoiho4FRSI8ytk5pGMyIw3YOR6g\"}", + "id":"{\"hash\":\"mWRxENiVY9pLcd6BNoiho4FRSI8ytk5pGMyIw3YOR6g\"}", "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f" }, "repo":{ @@ -20,7 +20,7 @@ { "sha":"7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300", "author":{ - "email":"{\"scope\":\"email\",\"domain\":\"github.com\",\"hash\":\"Zy85rjj9DKgAEgGc-2A540W7Iw-hy-4WhX7rIm3374U\"}" + "email":"{\"domain\":\"github.com\",\"hash\":\"Zy85rjj9DKgAEgGc-2A540W7Iw-hy-4WhX7rIm3374U\"}" }, "distinct":true } @@ -33,7 +33,7 @@ "id":"22237752260", "type":"WatchEvent", "actor":{ - "id":"{\"scope\":\"github\",\"hash\":\"mWRxENiVY9pLcd6BNoiho4FRSI8ytk5pGMyIw3YOR6g\"}", + "id":"{\"hash\":\"mWRxENiVY9pLcd6BNoiho4FRSI8ytk5pGMyIw3YOR6g\"}", "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f" }, "repo":{ diff --git a/docs/sources/github/example-api-responses/sanitized/repos.json b/docs/sources/github/example-api-responses/sanitized/repos.json index ca236aa5c..e410c7949 100644 --- a/docs/sources/github/example-api-responses/sanitized/repos.json +++ b/docs/sources/github/example-api-responses/sanitized/repos.json @@ -7,8 +7,8 @@ "private":false, "owner":{ "login":"p~l0ZHcnX2-XcT91-gbmB0SzV-hkXoRsHSKRUk0EZAWiNWnE7dA-D02Jw9gFgVL1l0", - "id":"{\"scope\":\"github\",\"hash\":\"RWbAXptYuc_vRthO1B5VwTMd3DcXLegwZciDuEAPqXg\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"IVjoAeB7canEKtgxCaqABqV46Gn0VV0Yr9Be6H-dX0I\"}", + "id":"{\"hash\":\"RWbAXptYuc_vRthO1B5VwTMd3DcXLegwZciDuEAPqXg\"}", + "node_id":"{\"hash\":\"IVjoAeB7canEKtgxCaqABqV46Gn0VV0Yr9Be6H-dX0I\"}", "type":"Organization", "site_admin":false }, diff --git a/docs/sources/github/example-api-responses/sanitized/team_members.json b/docs/sources/github/example-api-responses/sanitized/team_members.json index 054f71b22..599cbe28f 100644 --- a/docs/sources/github/example-api-responses/sanitized/team_members.json +++ b/docs/sources/github/example-api-responses/sanitized/team_members.json @@ -1,8 +1,8 @@ [ { "login":"p~E9mJyHvRHfGqXxImuUuTlHddbcjrRSOBItcF2cUkFUAH5Z9Z3LdF2qUAzaGcl-9Q", - "id":"{\"scope\":\"github\",\"hash\":\"H77wUJKd7KSkBy8isl5E1cTCBWBW8cG5uYE87NYu7To\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"YaWGzupY-9UvnQ6MF2VX0cuOsqqQ6zZZabQxKqYIjT4\"}", + "id":"{\"hash\":\"H77wUJKd7KSkBy8isl5E1cTCBWBW8cG5uYE87NYu7To\"}", + "node_id":"{\"hash\":\"YaWGzupY-9UvnQ6MF2VX0cuOsqqQ6zZZabQxKqYIjT4\"}", "type":"User", "site_admin":false } diff --git a/docs/sources/github/example-api-responses/sanitized/user.json b/docs/sources/github/example-api-responses/sanitized/user.json index 3655fb5e0..dea5ffb3c 100644 --- a/docs/sources/github/example-api-responses/sanitized/user.json +++ b/docs/sources/github/example-api-responses/sanitized/user.json @@ -1,11 +1,11 @@ { "login":"p~IAUEqSLLtP3EjjkzslH-S1ULJZRLQnH9hT54jiI1gbN_fPDYrPH3aBnAoR5-ec6f", - "id":"{\"scope\":\"github\",\"hash\":\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"}", - "node_id":"{\"scope\":\"github\",\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", + "id":"{\"hash\":\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"}", + "node_id":"{\"hash\":\"4YTpKVPu-74u-26baOFgVjym_0UMqn6D8A3cWAjmJ0U\"}", "type":"User", "site_admin":false, "blog":"https://github.com/blog", - "email":"{\"scope\":\"email\",\"domain\":\"github.com\",\"hash\":\"Zy85rjj9DKgAEgGc-2A540W7Iw-hy-4WhX7rIm3374U\"}", + "email":"{\"domain\":\"github.com\",\"hash\":\"Zy85rjj9DKgAEgGc-2A540W7Iw-hy-4WhX7rIm3374U\"}", "hireable":false, "public_repos":2, "public_gists":1, diff --git a/docs/sources/google-workspace/calendar/example-api-responses/sanitized/event.json b/docs/sources/google-workspace/calendar/example-api-responses/sanitized/event.json index 2006de653..38b511437 100644 --- a/docs/sources/google-workspace/calendar/example-api-responses/sanitized/event.json +++ b/docs/sources/google-workspace/calendar/example-api-responses/sanitized/event.json @@ -7,10 +7,10 @@ "created":"2015-07-02T22:54:23.000Z", "updated":"2015-07-03T11:24:21.213Z", "creator":{ - "email":"{\"scope\":\"email\",\"domain\":\"imagine.com\",\"hash\":\"aT3usZghgyWmDoXRncq5qhmQJQMjY49xDJylpM4TyYI\"}" + "email":"{\"domain\":\"imagine.com\",\"hash\":\"aT3usZghgyWmDoXRncq5qhmQJQMjY49xDJylpM4TyYI\"}" }, "organizer":{ - "email":"{\"scope\":\"email\",\"domain\":\"imagine.com\",\"hash\":\"aT3usZghgyWmDoXRncq5qhmQJQMjY49xDJylpM4TyYI\"}" + "email":"{\"domain\":\"imagine.com\",\"hash\":\"aT3usZghgyWmDoXRncq5qhmQJQMjY49xDJylpM4TyYI\"}" }, "start":{ "dateTime":"2015-07-06T10:00:00-07:00", @@ -24,16 +24,16 @@ "sequence":0, "attendees":[ { - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true, "responseStatus":"accepted" }, { - "email":"{\"scope\":\"email\",\"domain\":\"imagine.com\",\"hash\":\"zFQdzW2XNVkbRC1rsruylhQnOtFF7pCrqZ9VoHQt-cs\"}", + "email":"{\"domain\":\"imagine.com\",\"hash\":\"zFQdzW2XNVkbRC1rsruylhQnOtFF7pCrqZ9VoHQt-cs\"}", "responseStatus":"accepted" }, { - "email":"{\"scope\":\"email\",\"domain\":\"imagine.com\",\"hash\":\"aT3usZghgyWmDoXRncq5qhmQJQMjY49xDJylpM4TyYI\"}", + "email":"{\"domain\":\"imagine.com\",\"hash\":\"aT3usZghgyWmDoXRncq5qhmQJQMjY49xDJylpM4TyYI\"}", "organizer":true, "responseStatus":"accepted" } diff --git a/docs/sources/google-workspace/calendar/example-api-responses/sanitized/events.json b/docs/sources/google-workspace/calendar/example-api-responses/sanitized/events.json index e4d3aef2c..096fc3b48 100644 --- a/docs/sources/google-workspace/calendar/example-api-responses/sanitized/events.json +++ b/docs/sources/google-workspace/calendar/example-api-responses/sanitized/events.json @@ -22,10 +22,10 @@ "updated":"2015-04-12T01:34:59.063Z", "summary":"", "creator":{ - "email":"{\"scope\":\"email\",\"domain\":\"imagine.com\",\"hash\":\"aT3usZghgyWmDoXRncq5qhmQJQMjY49xDJylpM4TyYI\"}" + "email":"{\"domain\":\"imagine.com\",\"hash\":\"aT3usZghgyWmDoXRncq5qhmQJQMjY49xDJylpM4TyYI\"}" }, "organizer":{ - "email":"{\"scope\":\"email\",\"domain\":\"imagine.com\",\"hash\":\"aT3usZghgyWmDoXRncq5qhmQJQMjY49xDJylpM4TyYI\"}" + "email":"{\"domain\":\"imagine.com\",\"hash\":\"aT3usZghgyWmDoXRncq5qhmQJQMjY49xDJylpM4TyYI\"}" }, "start":{ "dateTime":"2015-04-13T13:00:00-07:00" @@ -37,7 +37,7 @@ "sequence":0, "attendees":[ { - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true, "responseStatus":"accepted" } @@ -58,11 +58,11 @@ "updated":"2015-05-05T14:09:13.958Z", "summary":"", "creator":{ - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true }, "organizer":{ - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true }, "start":{ @@ -92,10 +92,10 @@ "description":null, "location":" 770 Broadway, 6th Floor (Entrance on 9th St). - New York, NY", "creator":{ - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}" + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}" }, "organizer":{ - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}" + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}" }, "start":{ "dateTime":"2015-05-12T05:00:00-07:00" @@ -107,12 +107,12 @@ "sequence":0, "attendees":[ { - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true, "responseStatus":"needsAction" }, { - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", "organizer":true, "responseStatus":"accepted" } @@ -134,11 +134,11 @@ "description":null, "location":"Dial-In Number: (555) 555-2310 / Conference Code: 262 276 3910 #", "creator":{ - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true }, "organizer":{ - "email":"{\"scope\":\"email\",\"domain\":\"trinet.com\",\"hash\":\"va35X9kWARW4feA-IFQUJ-KwhcJFbiZhMXNB9QhE9HI\"}" + "email":"{\"domain\":\"trinet.com\",\"hash\":\"va35X9kWARW4feA-IFQUJ-KwhcJFbiZhMXNB9QhE9HI\"}" }, "start":{ "dateTime":"2015-06-10T10:00:00-07:00" @@ -150,7 +150,7 @@ "sequence":0, "attendees":[ { - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true, "responseStatus":"accepted" } @@ -173,11 +173,11 @@ "summary":"Call", "description":null, "creator":{ - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true }, "organizer":{ - "email":"{\"scope\":\"email\",\"domain\":\"lagroup.com\",\"hash\":\"CNBRGFlrkATtSE3yj964FUjqegxsLoY4pwEAouhCt1k\"}" + "email":"{\"domain\":\"lagroup.com\",\"hash\":\"CNBRGFlrkATtSE3yj964FUjqegxsLoY4pwEAouhCt1k\"}" }, "start":{ "dateTime":"2015-07-02T14:30:00-07:00" @@ -189,7 +189,7 @@ "sequence":0, "attendees":[ { - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true, "responseStatus":"accepted" } @@ -211,10 +211,10 @@ "updated":"2015-07-03T11:24:21.213Z", "summary":"Call", "creator":{ - "email":"{\"scope\":\"email\",\"domain\":\"imagine.com\",\"hash\":\"aT3usZghgyWmDoXRncq5qhmQJQMjY49xDJylpM4TyYI\"}" + "email":"{\"domain\":\"imagine.com\",\"hash\":\"aT3usZghgyWmDoXRncq5qhmQJQMjY49xDJylpM4TyYI\"}" }, "organizer":{ - "email":"{\"scope\":\"email\",\"domain\":\"imagine.com\",\"hash\":\"aT3usZghgyWmDoXRncq5qhmQJQMjY49xDJylpM4TyYI\"}" + "email":"{\"domain\":\"imagine.com\",\"hash\":\"aT3usZghgyWmDoXRncq5qhmQJQMjY49xDJylpM4TyYI\"}" }, "start":{ "dateTime":"2015-07-06T10:00:00-07:00", @@ -228,16 +228,16 @@ "sequence":0, "attendees":[ { - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true, "responseStatus":"accepted" }, { - "email":"{\"scope\":\"email\",\"domain\":\"imagine.com\",\"hash\":\"zFQdzW2XNVkbRC1rsruylhQnOtFF7pCrqZ9VoHQt-cs\"}", + "email":"{\"domain\":\"imagine.com\",\"hash\":\"zFQdzW2XNVkbRC1rsruylhQnOtFF7pCrqZ9VoHQt-cs\"}", "responseStatus":"accepted" }, { - "email":"{\"scope\":\"email\",\"domain\":\"imagine.com\",\"hash\":\"aT3usZghgyWmDoXRncq5qhmQJQMjY49xDJylpM4TyYI\"}", + "email":"{\"domain\":\"imagine.com\",\"hash\":\"aT3usZghgyWmDoXRncq5qhmQJQMjY49xDJylpM4TyYI\"}", "organizer":true, "responseStatus":"accepted" } @@ -276,11 +276,11 @@ "updated":"2015-07-06T13:05:35.772Z", "summary":"call", "creator":{ - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true }, "organizer":{ - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true }, "start":{ @@ -295,13 +295,13 @@ "sequence":0, "attendees":[ { - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "organizer":true, "self":true, "responseStatus":"accepted" }, { - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", "responseStatus":"accepted" } ], @@ -320,11 +320,11 @@ "updated":"2015-07-06T17:13:57.241Z", "summary":"call", "creator":{ - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true }, "organizer":{ - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true }, "start":{ @@ -352,11 +352,11 @@ "updated":"2015-07-06T17:14:13.719Z", "summary":"call", "creator":{ - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true }, "organizer":{ - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true }, "start":{ @@ -385,10 +385,10 @@ "summary":"Call,Check-In", "description":null, "creator":{ - "email":"{\"scope\":\"email\",\"domain\":\"imagine.com\",\"hash\":\"zFQdzW2XNVkbRC1rsruylhQnOtFF7pCrqZ9VoHQt-cs\"}" + "email":"{\"domain\":\"imagine.com\",\"hash\":\"zFQdzW2XNVkbRC1rsruylhQnOtFF7pCrqZ9VoHQt-cs\"}" }, "organizer":{ - "email":"{\"scope\":\"email\",\"domain\":\"imagine.com\",\"hash\":\"zFQdzW2XNVkbRC1rsruylhQnOtFF7pCrqZ9VoHQt-cs\"}" + "email":"{\"domain\":\"imagine.com\",\"hash\":\"zFQdzW2XNVkbRC1rsruylhQnOtFF7pCrqZ9VoHQt-cs\"}" }, "start":{ "dateTime":"2015-07-13T10:00:00-07:00" @@ -400,16 +400,16 @@ "sequence":0, "attendees":[ { - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true, "responseStatus":"accepted" }, { - "email":"{\"scope\":\"email\",\"domain\":\"imagine.com\",\"hash\":\"aT3usZghgyWmDoXRncq5qhmQJQMjY49xDJylpM4TyYI\"}", + "email":"{\"domain\":\"imagine.com\",\"hash\":\"aT3usZghgyWmDoXRncq5qhmQJQMjY49xDJylpM4TyYI\"}", "responseStatus":"needsAction" }, { - "email":"{\"scope\":\"email\",\"domain\":\"imagine.com\",\"hash\":\"zFQdzW2XNVkbRC1rsruylhQnOtFF7pCrqZ9VoHQt-cs\"}", + "email":"{\"domain\":\"imagine.com\",\"hash\":\"zFQdzW2XNVkbRC1rsruylhQnOtFF7pCrqZ9VoHQt-cs\"}", "organizer":true, "responseStatus":"accepted" } @@ -430,10 +430,10 @@ "summary":"Call", "description":null, "creator":{ - "email":"{\"scope\":\"email\",\"domain\":\"imagine.com\",\"hash\":\"zFQdzW2XNVkbRC1rsruylhQnOtFF7pCrqZ9VoHQt-cs\"}" + "email":"{\"domain\":\"imagine.com\",\"hash\":\"zFQdzW2XNVkbRC1rsruylhQnOtFF7pCrqZ9VoHQt-cs\"}" }, "organizer":{ - "email":"{\"scope\":\"email\",\"domain\":\"imagine.com\",\"hash\":\"zFQdzW2XNVkbRC1rsruylhQnOtFF7pCrqZ9VoHQt-cs\"}" + "email":"{\"domain\":\"imagine.com\",\"hash\":\"zFQdzW2XNVkbRC1rsruylhQnOtFF7pCrqZ9VoHQt-cs\"}" }, "start":{ "dateTime":"2015-07-21T10:00:00-07:00" @@ -445,17 +445,17 @@ "sequence":0, "attendees":[ { - "email":"{\"scope\":\"email\",\"domain\":\"imagine.com\",\"hash\":\"zFQdzW2XNVkbRC1rsruylhQnOtFF7pCrqZ9VoHQt-cs\"}", + "email":"{\"domain\":\"imagine.com\",\"hash\":\"zFQdzW2XNVkbRC1rsruylhQnOtFF7pCrqZ9VoHQt-cs\"}", "organizer":true, "responseStatus":"accepted" }, { - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true, "responseStatus":"accepted" }, { - "email":"{\"scope\":\"email\",\"domain\":\"imagine.com\",\"hash\":\"aT3usZghgyWmDoXRncq5qhmQJQMjY49xDJylpM4TyYI\"}", + "email":"{\"domain\":\"imagine.com\",\"hash\":\"aT3usZghgyWmDoXRncq5qhmQJQMjY49xDJylpM4TyYI\"}", "responseStatus":"needsAction" } ], @@ -494,11 +494,11 @@ "summary":"", "location":"Scotland", "creator":{ - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true }, "organizer":{ - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true }, "start":{ @@ -532,11 +532,11 @@ "summary":"", "location":"WeWork Soho West", "creator":{ - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true }, "organizer":{ - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}" + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}" }, "start":{ "dateTime":"2015-05-01T08:00:00-07:00", @@ -550,7 +550,7 @@ "sequence":0, "attendees":[ { - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true, "responseStatus":"accepted" } @@ -571,10 +571,10 @@ "summary":"Call", "description":null, "creator":{ - "email":"{\"scope\":\"email\",\"domain\":\"imagine.com\",\"hash\":\"zFQdzW2XNVkbRC1rsruylhQnOtFF7pCrqZ9VoHQt-cs\"}" + "email":"{\"domain\":\"imagine.com\",\"hash\":\"zFQdzW2XNVkbRC1rsruylhQnOtFF7pCrqZ9VoHQt-cs\"}" }, "organizer":{ - "email":"{\"scope\":\"email\",\"domain\":\"imagine.com\",\"hash\":\"zFQdzW2XNVkbRC1rsruylhQnOtFF7pCrqZ9VoHQt-cs\"}" + "email":"{\"domain\":\"imagine.com\",\"hash\":\"zFQdzW2XNVkbRC1rsruylhQnOtFF7pCrqZ9VoHQt-cs\"}" }, "start":{ "dateTime":"2015-07-29T11:30:00-07:00" @@ -586,12 +586,12 @@ "sequence":0, "attendees":[ { - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true, "responseStatus":"accepted" }, { - "email":"{\"scope\":\"email\",\"domain\":\"imagine.com\",\"hash\":\"zFQdzW2XNVkbRC1rsruylhQnOtFF7pCrqZ9VoHQt-cs\"}", + "email":"{\"domain\":\"imagine.com\",\"hash\":\"zFQdzW2XNVkbRC1rsruylhQnOtFF7pCrqZ9VoHQt-cs\"}", "organizer":true, "responseStatus":"accepted" } @@ -630,11 +630,11 @@ "updated":"2015-08-04T11:14:58.108Z", "summary":"OOO", "creator":{ - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true }, "organizer":{ - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true }, "start":{ @@ -667,11 +667,11 @@ "updated":"2015-08-04T11:15:45.864Z", "summary":"OOO", "creator":{ - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true }, "organizer":{ - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true }, "start":{ @@ -705,10 +705,10 @@ "summary":"", "description":null, "creator":{ - "email":"{\"scope\":\"email\",\"domain\":\"gmail.com\",\"hash\":\"6kb37s7Xrbed1hWIQ02972KS88WjLiAuQzN-fc-1u2k\"}" + "email":"{\"domain\":\"gmail.com\",\"hash\":\"6kb37s7Xrbed1hWIQ02972KS88WjLiAuQzN-fc-1u2k\"}" }, "organizer":{ - "email":"{\"scope\":\"email\",\"domain\":\"gmail.com\",\"hash\":\"6kb37s7Xrbed1hWIQ02972KS88WjLiAuQzN-fc-1u2k\"}" + "email":"{\"domain\":\"gmail.com\",\"hash\":\"6kb37s7Xrbed1hWIQ02972KS88WjLiAuQzN-fc-1u2k\"}" }, "start":{ "dateTime":"2015-09-15T11:00:00-07:00" @@ -720,20 +720,20 @@ "sequence":1, "attendees":[ { - "email":"{\"scope\":\"email\",\"domain\":\"gmail.com\",\"hash\":\"6kb37s7Xrbed1hWIQ02972KS88WjLiAuQzN-fc-1u2k\"}", + "email":"{\"domain\":\"gmail.com\",\"hash\":\"6kb37s7Xrbed1hWIQ02972KS88WjLiAuQzN-fc-1u2k\"}", "organizer":true, "responseStatus":"accepted" }, { - "email":"{\"scope\":\"email\",\"domain\":\"gmail.com\",\"hash\":\"Pgo2PXybS-G8nafRqy85woSRH-pbHUuJllRKs0AGlDg\"}", + "email":"{\"domain\":\"gmail.com\",\"hash\":\"Pgo2PXybS-G8nafRqy85woSRH-pbHUuJllRKs0AGlDg\"}", "responseStatus":"accepted" }, { - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", "responseStatus":"needsAction" }, { - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true, "responseStatus":"needsAction" } @@ -753,10 +753,10 @@ "updated":"2015-10-05T13:08:05.913Z", "summary":"", "creator":{ - "email":"{\"scope\":\"email\",\"domain\":\"gmail.com\",\"hash\":\"Pgo2PXybS-G8nafRqy85woSRH-pbHUuJllRKs0AGlDg\"}" + "email":"{\"domain\":\"gmail.com\",\"hash\":\"Pgo2PXybS-G8nafRqy85woSRH-pbHUuJllRKs0AGlDg\"}" }, "organizer":{ - "email":"{\"scope\":\"email\",\"domain\":\"gmail.com\",\"hash\":\"Pgo2PXybS-G8nafRqy85woSRH-pbHUuJllRKs0AGlDg\"}" + "email":"{\"domain\":\"gmail.com\",\"hash\":\"Pgo2PXybS-G8nafRqy85woSRH-pbHUuJllRKs0AGlDg\"}" }, "start":{ "dateTime":"2015-10-08T15:00:00-07:00" @@ -769,12 +769,12 @@ "sequence":0, "attendees":[ { - "email":"{\"scope\":\"email\",\"domain\":\"gmail.com\",\"hash\":\"Pgo2PXybS-G8nafRqy85woSRH-pbHUuJllRKs0AGlDg\"}", + "email":"{\"domain\":\"gmail.com\",\"hash\":\"Pgo2PXybS-G8nafRqy85woSRH-pbHUuJllRKs0AGlDg\"}", "organizer":true, "responseStatus":"tentative" }, { - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true, "responseStatus":"needsAction" } @@ -794,11 +794,11 @@ "updated":"2015-10-06T17:59:33.944Z", "summary":"call", "creator":{ - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true }, "organizer":{ - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "self":true }, "start":{ diff --git a/docs/sources/google-workspace/directory/example-api-responses/sanitized/group-members.json b/docs/sources/google-workspace/directory/example-api-responses/sanitized/group-members.json index 1309f8f04..c05e6e4d7 100644 --- a/docs/sources/google-workspace/directory/example-api-responses/sanitized/group-members.json +++ b/docs/sources/google-workspace/directory/example-api-responses/sanitized/group-members.json @@ -6,7 +6,7 @@ "kind":"admin#directory#member", "etag":"\"nqbsbhvoIENh0WbZEZYWTG7mnk2phHz4rrCEo-rHT2k/cClGlnUTD66mPh1UYN596quOzEo\"", "id":"11792741172342342390794", - "email":"{\"scope\":\"email\",\"domain\":\"acme.com\",\"hash\":\"ariUpTh_cLRE8xlCKjv8WQU9RJ15hsKGZ00dvk9zsg8\"}", + "email":"{\"domain\":\"acme.com\",\"hash\":\"ariUpTh_cLRE8xlCKjv8WQU9RJ15hsKGZ00dvk9zsg8\"}", "role":"MEMBER", "type":"USER", "status":"ACTIVE" @@ -15,7 +15,7 @@ "kind":"admin#directory#member", "etag":"\"nqbsbhvoIENh0WbZEZYWTG7mnk2phHz4rrCEo-rHT2k/msEQv4CMx2P7EiwQUAjOY6p4QWU\"", "id":"1006538123423423910644", - "email":"{\"scope\":\"email\",\"domain\":\"acme.com\",\"hash\":\"TxHAHtCVcT1oMo4koEB2lLPK5Lxw9y9SBs4DJ85-TBQ\"}", + "email":"{\"domain\":\"acme.com\",\"hash\":\"TxHAHtCVcT1oMo4koEB2lLPK5Lxw9y9SBs4DJ85-TBQ\"}", "role":"MEMBER", "type":"USER", "status":"ACTIVE" @@ -24,7 +24,7 @@ "kind":"admin#directory#member", "etag":"\"nqbsbhvoIENh0WbZEZYWTG7mnk2phHz4rrCEo-rHT2k/GaG-VcDm4WBDI7XDLhClnr3QXUY\"", "id":"11112342342354233489959", - "email":"{\"scope\":\"email\",\"domain\":\"acme.com\",\"hash\":\"JTawMucaPUT7BB_sebdkjujmoZT57KW3nt2PG1KUQS0\"}", + "email":"{\"domain\":\"acme.com\",\"hash\":\"JTawMucaPUT7BB_sebdkjujmoZT57KW3nt2PG1KUQS0\"}", "role":"OWNER", "type":"USER", "status":"ACTIVE" @@ -33,7 +33,7 @@ "kind":"admin#directory#member", "etag":"\"nqbsbhvoIENh0WbZEZYWTG7mnk2phHz4rrCEo-rHT2k/aZle5ohKQ9w1HjfzJYKkeV57qpI\"", "id":"114342345234523452345850", - "email":"{\"scope\":\"email\",\"domain\":\"acme.com\",\"hash\":\"CLvQNR1KMpLcz_v3fJuXX9IiNiF360SlRBNmPAiWY-w\"}", + "email":"{\"domain\":\"acme.com\",\"hash\":\"CLvQNR1KMpLcz_v3fJuXX9IiNiF360SlRBNmPAiWY-w\"}", "role":"MEMBER", "type":"USER", "status":"ACTIVE" @@ -42,7 +42,7 @@ "kind":"admin#directory#member", "etag":"\"nqbsbhvoIENh0WbZEZYWTG7mnk2phHz4rrCEo-rHT2k/OXyW7YpfbUxYBHjHX3Br9lIQdmg\"", "id":"1005323452345234623456356", - "email":"{\"scope\":\"email\",\"domain\":\"acme.com\",\"hash\":\"TQ7vhOBwM8Jra92dAsaazqMJYGE5fo3GkZPDCubSA-c\"}", + "email":"{\"domain\":\"acme.com\",\"hash\":\"TQ7vhOBwM8Jra92dAsaazqMJYGE5fo3GkZPDCubSA-c\"}", "role":"OWNER", "type":"USER", "status":"ACTIVE" diff --git a/docs/sources/google-workspace/directory/example-api-responses/sanitized/user.json b/docs/sources/google-workspace/directory/example-api-responses/sanitized/user.json index f18912780..69252f55c 100644 --- a/docs/sources/google-workspace/directory/example-api-responses/sanitized/user.json +++ b/docs/sources/google-workspace/directory/example-api-responses/sanitized/user.json @@ -2,7 +2,7 @@ "kind":"admin#directory#user", "id":"1234234331471490332349959", "etag":"\"g2-KWSBhdhEV1DJNuuX35hICepPpOEDe4lPvnwuxvf4/3nm0BxOJJfOv5nDTHneimEDnNRg\"", - "primaryEmail":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "primaryEmail":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "isAdmin":true, "isDelegatedAdmin":false, "lastLoginTime":"2021-10-10T14:18:21.000Z", @@ -14,55 +14,55 @@ "ipWhitelisted":false, "emails":[ { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "address":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "primary":true }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"2Go3NUnssg6ylUG5KhiUU_iia_EIH6bmHSjuxF8Oqyk\"}" + "address":"{\"domain\":\"worklytics.co\",\"hash\":\"2Go3NUnssg6ylUG5KhiUU_iia_EIH6bmHSjuxF8Oqyk\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"4JurcaYiPcpIPWoECPGFQVT4JNivIqETS68Ckjllfr0\"}" + "address":"{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"4JurcaYiPcpIPWoECPGFQVT4JNivIqETS68Ckjllfr0\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"iiBNwxiPbv8wEeXUc3XiwZhrwDWgY6ZVgUmN_kkxvLc\"}" + "address":"{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"iiBNwxiPbv8wEeXUc3XiwZhrwDWgY6ZVgUmN_kkxvLc\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ojO-cQo0BsTqF144-884OktttVmtu0XD3XG87EBSkaM\"}" + "address":"{\"domain\":\"worklytics.co\",\"hash\":\"ojO-cQo0BsTqF144-884OktttVmtu0XD3XG87EBSkaM\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"-zRca6jjo5rjm1TkZWSfDUNKCcarGOITXGdzb23WVY4\"}" + "address":"{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"-zRca6jjo5rjm1TkZWSfDUNKCcarGOITXGdzb23WVY4\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"sCbW9DlpTyWrKrvDu9Z2gwUDJpUm9TPhRsk7YJWdEgI\"}" + "address":"{\"domain\":\"worklytics.co\",\"hash\":\"sCbW9DlpTyWrKrvDu9Z2gwUDJpUm9TPhRsk7YJWdEgI\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"OkMARU2WwsONKuue1W_WH_5a629Y_oCT3OfQtanN-jE\"}" + "address":"{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"OkMARU2WwsONKuue1W_WH_5a629Y_oCT3OfQtanN-jE\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Xi6zH99auRMbxsFiQV0NB8wF5U9ITDKzRW8Whf27jbs\"}" + "address":"{\"domain\":\"worklytics.co\",\"hash\":\"Xi6zH99auRMbxsFiQV0NB8wF5U9ITDKzRW8Whf27jbs\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"FERTSysxax0kaHsIuFWjW2_gf5kpLhIQrpAYkBPrOaQ\"}" + "address":"{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"FERTSysxax0kaHsIuFWjW2_gf5kpLhIQrpAYkBPrOaQ\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"PcXFdtazNty2P-JkRp3SWzYwBhA-IF1u95MNrJl5Hr0\"}" + "address":"{\"domain\":\"in.worklytics.co\",\"hash\":\"PcXFdtazNty2P-JkRp3SWzYwBhA-IF1u95MNrJl5Hr0\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"9vNzNM4KMF1Imj6P8ia4PBu6zM16s6A-6VgxE9-vASs\"}" + "address":"{\"domain\":\"in.worklytics.co\",\"hash\":\"9vNzNM4KMF1Imj6P8ia4PBu6zM16s6A-6VgxE9-vASs\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"jaLzl86qDL6Woi3LkpG2_3mqAZaS7wRo_skQ65sYdNk\"}" + "address":"{\"domain\":\"in.worklytics.co\",\"hash\":\"jaLzl86qDL6Woi3LkpG2_3mqAZaS7wRo_skQ65sYdNk\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"0hUyOpbBY_QKYkLDvlLMtlBNCaM8obTWz-DMMGU7hSA\"}" + "address":"{\"domain\":\"in.worklytics.co\",\"hash\":\"0hUyOpbBY_QKYkLDvlLMtlBNCaM8obTWz-DMMGU7hSA\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"g4kf0AMm1hVmnx-wFC5kfHCdJY1DOlLzXRQKb5W2Z70\"}" + "address":"{\"domain\":\"in.worklytics.co\",\"hash\":\"g4kf0AMm1hVmnx-wFC5kfHCdJY1DOlLzXRQKb5W2Z70\"}" } ], "relations":[ { - "value":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", + "value":"{\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", "type":"manager" } ], @@ -77,8 +77,8 @@ "websites":[ ], "posixAccounts":[ { - "username":"{\"scope\":\"gapps\",\"hash\":\"NXK2OHOFQ2Q9KaQwtpa1jNrPXM_Td1_BV4ZpxNituaY\"}", - "uid":"{\"scope\":\"gapps\",\"hash\":\"z-Lhp-OY1j1O3yD09MLrYhaL4bxdfZfSt6912AjVCs8\"}", + "username":"{\"hash\":\"NXK2OHOFQ2Q9KaQwtpa1jNrPXM_Td1_BV4ZpxNituaY\"}", + "uid":"{\"hash\":\"z-Lhp-OY1j1O3yD09MLrYhaL4bxdfZfSt6912AjVCs8\"}", "gid":"1113066348", "systemId":"", "primary":true, @@ -87,22 +87,22 @@ ], "sshPublicKeys":[ ], "aliases":[ - "{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"2Go3NUnssg6ylUG5KhiUU_iia_EIH6bmHSjuxF8Oqyk\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ojO-cQo0BsTqF144-884OktttVmtu0XD3XG87EBSkaM\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"sCbW9DlpTyWrKrvDu9Z2gwUDJpUm9TPhRsk7YJWdEgI\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Xi6zH99auRMbxsFiQV0NB8wF5U9ITDKzRW8Whf27jbs\"}" + "{\"domain\":\"worklytics.co\",\"hash\":\"2Go3NUnssg6ylUG5KhiUU_iia_EIH6bmHSjuxF8Oqyk\"}", + "{\"domain\":\"worklytics.co\",\"hash\":\"ojO-cQo0BsTqF144-884OktttVmtu0XD3XG87EBSkaM\"}", + "{\"domain\":\"worklytics.co\",\"hash\":\"sCbW9DlpTyWrKrvDu9Z2gwUDJpUm9TPhRsk7YJWdEgI\"}", + "{\"domain\":\"worklytics.co\",\"hash\":\"Xi6zH99auRMbxsFiQV0NB8wF5U9ITDKzRW8Whf27jbs\"}" ], "nonEditableAliases":[ - "{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"4JurcaYiPcpIPWoECPGFQVT4JNivIqETS68Ckjllfr0\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"iiBNwxiPbv8wEeXUc3XiwZhrwDWgY6ZVgUmN_kkxvLc\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"-zRca6jjo5rjm1TkZWSfDUNKCcarGOITXGdzb23WVY4\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"OkMARU2WwsONKuue1W_WH_5a629Y_oCT3OfQtanN-jE\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"FERTSysxax0kaHsIuFWjW2_gf5kpLhIQrpAYkBPrOaQ\"}", - "{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"PcXFdtazNty2P-JkRp3SWzYwBhA-IF1u95MNrJl5Hr0\"}", - "{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"9vNzNM4KMF1Imj6P8ia4PBu6zM16s6A-6VgxE9-vASs\"}", - "{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"jaLzl86qDL6Woi3LkpG2_3mqAZaS7wRo_skQ65sYdNk\"}", - "{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"0hUyOpbBY_QKYkLDvlLMtlBNCaM8obTWz-DMMGU7hSA\"}", - "{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"g4kf0AMm1hVmnx-wFC5kfHCdJY1DOlLzXRQKb5W2Z70\"}" + "{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"4JurcaYiPcpIPWoECPGFQVT4JNivIqETS68Ckjllfr0\"}", + "{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"iiBNwxiPbv8wEeXUc3XiwZhrwDWgY6ZVgUmN_kkxvLc\"}", + "{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"-zRca6jjo5rjm1TkZWSfDUNKCcarGOITXGdzb23WVY4\"}", + "{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"OkMARU2WwsONKuue1W_WH_5a629Y_oCT3OfQtanN-jE\"}", + "{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"FERTSysxax0kaHsIuFWjW2_gf5kpLhIQrpAYkBPrOaQ\"}", + "{\"domain\":\"in.worklytics.co\",\"hash\":\"PcXFdtazNty2P-JkRp3SWzYwBhA-IF1u95MNrJl5Hr0\"}", + "{\"domain\":\"in.worklytics.co\",\"hash\":\"9vNzNM4KMF1Imj6P8ia4PBu6zM16s6A-6VgxE9-vASs\"}", + "{\"domain\":\"in.worklytics.co\",\"hash\":\"jaLzl86qDL6Woi3LkpG2_3mqAZaS7wRo_skQ65sYdNk\"}", + "{\"domain\":\"in.worklytics.co\",\"hash\":\"0hUyOpbBY_QKYkLDvlLMtlBNCaM8obTWz-DMMGU7hSA\"}", + "{\"domain\":\"in.worklytics.co\",\"hash\":\"g4kf0AMm1hVmnx-wFC5kfHCdJY1DOlLzXRQKb5W2Z70\"}" ], "customerId":"Y03v4af07", "orgUnitPath":"/Employees", diff --git a/docs/sources/google-workspace/directory/example-api-responses/sanitized/users.json b/docs/sources/google-workspace/directory/example-api-responses/sanitized/users.json index c28189725..e1bb9cf87 100644 --- a/docs/sources/google-workspace/directory/example-api-responses/sanitized/users.json +++ b/docs/sources/google-workspace/directory/example-api-responses/sanitized/users.json @@ -6,7 +6,7 @@ "kind":"admin#directory#user", "id":"1234234331471490332349959", "etag":"\"g2-KWSBhdhEV1DJNuuX35hICepPpOEDe4lPvnwuxvf4/3nm0BxOJJfOv5nDTHneimEDnNRg\"", - "primaryEmail":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "primaryEmail":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "isAdmin":true, "isDelegatedAdmin":false, "lastLoginTime":"2021-10-10T14:18:21.000Z", @@ -18,55 +18,55 @@ "ipWhitelisted":false, "emails":[ { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "address":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "primary":true }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"2Go3NUnssg6ylUG5KhiUU_iia_EIH6bmHSjuxF8Oqyk\"}" + "address":"{\"domain\":\"worklytics.co\",\"hash\":\"2Go3NUnssg6ylUG5KhiUU_iia_EIH6bmHSjuxF8Oqyk\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"4JurcaYiPcpIPWoECPGFQVT4JNivIqETS68Ckjllfr0\"}" + "address":"{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"4JurcaYiPcpIPWoECPGFQVT4JNivIqETS68Ckjllfr0\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"iiBNwxiPbv8wEeXUc3XiwZhrwDWgY6ZVgUmN_kkxvLc\"}" + "address":"{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"iiBNwxiPbv8wEeXUc3XiwZhrwDWgY6ZVgUmN_kkxvLc\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ojO-cQo0BsTqF144-884OktttVmtu0XD3XG87EBSkaM\"}" + "address":"{\"domain\":\"worklytics.co\",\"hash\":\"ojO-cQo0BsTqF144-884OktttVmtu0XD3XG87EBSkaM\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"-zRca6jjo5rjm1TkZWSfDUNKCcarGOITXGdzb23WVY4\"}" + "address":"{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"-zRca6jjo5rjm1TkZWSfDUNKCcarGOITXGdzb23WVY4\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"sCbW9DlpTyWrKrvDu9Z2gwUDJpUm9TPhRsk7YJWdEgI\"}" + "address":"{\"domain\":\"worklytics.co\",\"hash\":\"sCbW9DlpTyWrKrvDu9Z2gwUDJpUm9TPhRsk7YJWdEgI\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"OkMARU2WwsONKuue1W_WH_5a629Y_oCT3OfQtanN-jE\"}" + "address":"{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"OkMARU2WwsONKuue1W_WH_5a629Y_oCT3OfQtanN-jE\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Xi6zH99auRMbxsFiQV0NB8wF5U9ITDKzRW8Whf27jbs\"}" + "address":"{\"domain\":\"worklytics.co\",\"hash\":\"Xi6zH99auRMbxsFiQV0NB8wF5U9ITDKzRW8Whf27jbs\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"FERTSysxax0kaHsIuFWjW2_gf5kpLhIQrpAYkBPrOaQ\"}" + "address":"{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"FERTSysxax0kaHsIuFWjW2_gf5kpLhIQrpAYkBPrOaQ\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"PcXFdtazNty2P-JkRp3SWzYwBhA-IF1u95MNrJl5Hr0\"}" + "address":"{\"domain\":\"in.worklytics.co\",\"hash\":\"PcXFdtazNty2P-JkRp3SWzYwBhA-IF1u95MNrJl5Hr0\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"9vNzNM4KMF1Imj6P8ia4PBu6zM16s6A-6VgxE9-vASs\"}" + "address":"{\"domain\":\"in.worklytics.co\",\"hash\":\"9vNzNM4KMF1Imj6P8ia4PBu6zM16s6A-6VgxE9-vASs\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"jaLzl86qDL6Woi3LkpG2_3mqAZaS7wRo_skQ65sYdNk\"}" + "address":"{\"domain\":\"in.worklytics.co\",\"hash\":\"jaLzl86qDL6Woi3LkpG2_3mqAZaS7wRo_skQ65sYdNk\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"0hUyOpbBY_QKYkLDvlLMtlBNCaM8obTWz-DMMGU7hSA\"}" + "address":"{\"domain\":\"in.worklytics.co\",\"hash\":\"0hUyOpbBY_QKYkLDvlLMtlBNCaM8obTWz-DMMGU7hSA\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"g4kf0AMm1hVmnx-wFC5kfHCdJY1DOlLzXRQKb5W2Z70\"}" + "address":"{\"domain\":\"in.worklytics.co\",\"hash\":\"g4kf0AMm1hVmnx-wFC5kfHCdJY1DOlLzXRQKb5W2Z70\"}" } ], "relations":[ { - "value":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", + "value":"{\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", "type":"manager" } ], @@ -81,8 +81,8 @@ "websites":[ ], "posixAccounts":[ { - "username":"{\"scope\":\"gapps\",\"hash\":\"NXK2OHOFQ2Q9KaQwtpa1jNrPXM_Td1_BV4ZpxNituaY\"}", - "uid":"{\"scope\":\"gapps\",\"hash\":\"z-Lhp-OY1j1O3yD09MLrYhaL4bxdfZfSt6912AjVCs8\"}", + "username":"{\"hash\":\"NXK2OHOFQ2Q9KaQwtpa1jNrPXM_Td1_BV4ZpxNituaY\"}", + "uid":"{\"hash\":\"z-Lhp-OY1j1O3yD09MLrYhaL4bxdfZfSt6912AjVCs8\"}", "gid":"1113066348", "systemId":"", "primary":true, @@ -91,22 +91,22 @@ ], "sshPublicKeys":[ ], "aliases":[ - "{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"2Go3NUnssg6ylUG5KhiUU_iia_EIH6bmHSjuxF8Oqyk\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ojO-cQo0BsTqF144-884OktttVmtu0XD3XG87EBSkaM\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"sCbW9DlpTyWrKrvDu9Z2gwUDJpUm9TPhRsk7YJWdEgI\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Xi6zH99auRMbxsFiQV0NB8wF5U9ITDKzRW8Whf27jbs\"}" + "{\"domain\":\"worklytics.co\",\"hash\":\"2Go3NUnssg6ylUG5KhiUU_iia_EIH6bmHSjuxF8Oqyk\"}", + "{\"domain\":\"worklytics.co\",\"hash\":\"ojO-cQo0BsTqF144-884OktttVmtu0XD3XG87EBSkaM\"}", + "{\"domain\":\"worklytics.co\",\"hash\":\"sCbW9DlpTyWrKrvDu9Z2gwUDJpUm9TPhRsk7YJWdEgI\"}", + "{\"domain\":\"worklytics.co\",\"hash\":\"Xi6zH99auRMbxsFiQV0NB8wF5U9ITDKzRW8Whf27jbs\"}" ], "nonEditableAliases":[ - "{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"4JurcaYiPcpIPWoECPGFQVT4JNivIqETS68Ckjllfr0\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"iiBNwxiPbv8wEeXUc3XiwZhrwDWgY6ZVgUmN_kkxvLc\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"-zRca6jjo5rjm1TkZWSfDUNKCcarGOITXGdzb23WVY4\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"OkMARU2WwsONKuue1W_WH_5a629Y_oCT3OfQtanN-jE\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"FERTSysxax0kaHsIuFWjW2_gf5kpLhIQrpAYkBPrOaQ\"}", - "{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"PcXFdtazNty2P-JkRp3SWzYwBhA-IF1u95MNrJl5Hr0\"}", - "{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"9vNzNM4KMF1Imj6P8ia4PBu6zM16s6A-6VgxE9-vASs\"}", - "{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"jaLzl86qDL6Woi3LkpG2_3mqAZaS7wRo_skQ65sYdNk\"}", - "{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"0hUyOpbBY_QKYkLDvlLMtlBNCaM8obTWz-DMMGU7hSA\"}", - "{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"g4kf0AMm1hVmnx-wFC5kfHCdJY1DOlLzXRQKb5W2Z70\"}" + "{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"4JurcaYiPcpIPWoECPGFQVT4JNivIqETS68Ckjllfr0\"}", + "{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"iiBNwxiPbv8wEeXUc3XiwZhrwDWgY6ZVgUmN_kkxvLc\"}", + "{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"-zRca6jjo5rjm1TkZWSfDUNKCcarGOITXGdzb23WVY4\"}", + "{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"OkMARU2WwsONKuue1W_WH_5a629Y_oCT3OfQtanN-jE\"}", + "{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"FERTSysxax0kaHsIuFWjW2_gf5kpLhIQrpAYkBPrOaQ\"}", + "{\"domain\":\"in.worklytics.co\",\"hash\":\"PcXFdtazNty2P-JkRp3SWzYwBhA-IF1u95MNrJl5Hr0\"}", + "{\"domain\":\"in.worklytics.co\",\"hash\":\"9vNzNM4KMF1Imj6P8ia4PBu6zM16s6A-6VgxE9-vASs\"}", + "{\"domain\":\"in.worklytics.co\",\"hash\":\"jaLzl86qDL6Woi3LkpG2_3mqAZaS7wRo_skQ65sYdNk\"}", + "{\"domain\":\"in.worklytics.co\",\"hash\":\"0hUyOpbBY_QKYkLDvlLMtlBNCaM8obTWz-DMMGU7hSA\"}", + "{\"domain\":\"in.worklytics.co\",\"hash\":\"g4kf0AMm1hVmnx-wFC5kfHCdJY1DOlLzXRQKb5W2Z70\"}" ], "customerId":"Y03v4af07", "orgUnitPath":"/Employees", @@ -120,7 +120,7 @@ "kind":"admin#directory#user", "id":"10053asdf237356", "etag":"\"g2-KWSBhdhEV1DJNuuX35hICepPpOEDe4lPvnwuxvf4/MW5lZemqM7i3B82DXmbR3pne-KM\"", - "primaryEmail":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", + "primaryEmail":"{\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", "isAdmin":true, "isDelegatedAdmin":false, "lastLoginTime":"2021-10-08T14:05:25.000Z", @@ -132,19 +132,19 @@ "ipWhitelisted":false, "emails":[ { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", + "address":"{\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", "primary":true }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"JUaCPJoOYfls-GMYa6BUYCd2hVFlftsxCAsgDwY939U\"}" + "address":"{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"JUaCPJoOYfls-GMYa6BUYCd2hVFlftsxCAsgDwY939U\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"8eXn99TZqk-q25JqvcGGKHsJYUX-2ZpsEyGTSOvkpHw\"}" + "address":"{\"domain\":\"in.worklytics.co\",\"hash\":\"8eXn99TZqk-q25JqvcGGKHsJYUX-2ZpsEyGTSOvkpHw\"}" } ], "nonEditableAliases":[ - "{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"JUaCPJoOYfls-GMYa6BUYCd2hVFlftsxCAsgDwY939U\"}", - "{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"8eXn99TZqk-q25JqvcGGKHsJYUX-2ZpsEyGTSOvkpHw\"}" + "{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"JUaCPJoOYfls-GMYa6BUYCd2hVFlftsxCAsgDwY939U\"}", + "{\"domain\":\"in.worklytics.co\",\"hash\":\"8eXn99TZqk-q25JqvcGGKHsJYUX-2ZpsEyGTSOvkpHw\"}" ], "gender":{ "type":"male" diff --git a/docs/sources/google-workspace/directory/example-api-responses/sanitized_no-app-ids/group-members.json b/docs/sources/google-workspace/directory/example-api-responses/sanitized_no-app-ids/group-members.json index a04e32a5d..403f53f76 100644 --- a/docs/sources/google-workspace/directory/example-api-responses/sanitized_no-app-ids/group-members.json +++ b/docs/sources/google-workspace/directory/example-api-responses/sanitized_no-app-ids/group-members.json @@ -5,8 +5,8 @@ { "kind":"admin#directory#member", "etag":"\"nqbsbhvoIENh0WbZEZYWTG7mnk2phHz4rrCEo-rHT2k/cClGlnUTD66mPh1UYN596quOzEo\"", - "id":"{\"scope\":\"gapps\",\"hash\":\"0rTnwSH60YEXYvNG2URi8ApoDR8Z-BU1a2-hN3w3MkQ\"}", - "email":"{\"scope\":\"email\",\"domain\":\"acme.com\",\"hash\":\"ariUpTh_cLRE8xlCKjv8WQU9RJ15hsKGZ00dvk9zsg8\"}", + "id":"{\"hash\":\"0rTnwSH60YEXYvNG2URi8ApoDR8Z-BU1a2-hN3w3MkQ\"}", + "email":"{\"domain\":\"acme.com\",\"hash\":\"ariUpTh_cLRE8xlCKjv8WQU9RJ15hsKGZ00dvk9zsg8\"}", "role":"MEMBER", "type":"USER", "status":"ACTIVE" @@ -14,8 +14,8 @@ { "kind":"admin#directory#member", "etag":"\"nqbsbhvoIENh0WbZEZYWTG7mnk2phHz4rrCEo-rHT2k/msEQv4CMx2P7EiwQUAjOY6p4QWU\"", - "id":"{\"scope\":\"gapps\",\"hash\":\"DZGMkcDzuqFISCHOoqLMuZy8gJSRkzVIOHEyDuw35nU\"}", - "email":"{\"scope\":\"email\",\"domain\":\"acme.com\",\"hash\":\"TxHAHtCVcT1oMo4koEB2lLPK5Lxw9y9SBs4DJ85-TBQ\"}", + "id":"{\"hash\":\"DZGMkcDzuqFISCHOoqLMuZy8gJSRkzVIOHEyDuw35nU\"}", + "email":"{\"domain\":\"acme.com\",\"hash\":\"TxHAHtCVcT1oMo4koEB2lLPK5Lxw9y9SBs4DJ85-TBQ\"}", "role":"MEMBER", "type":"USER", "status":"ACTIVE" @@ -23,8 +23,8 @@ { "kind":"admin#directory#member", "etag":"\"nqbsbhvoIENh0WbZEZYWTG7mnk2phHz4rrCEo-rHT2k/GaG-VcDm4WBDI7XDLhClnr3QXUY\"", - "id":"{\"scope\":\"gapps\",\"hash\":\"ncqO_XGMYcr3lBtyQMyO9eHJI7n8IsCO91JMtkFW33g\"}", - "email":"{\"scope\":\"email\",\"domain\":\"acme.com\",\"hash\":\"JTawMucaPUT7BB_sebdkjujmoZT57KW3nt2PG1KUQS0\"}", + "id":"{\"hash\":\"ncqO_XGMYcr3lBtyQMyO9eHJI7n8IsCO91JMtkFW33g\"}", + "email":"{\"domain\":\"acme.com\",\"hash\":\"JTawMucaPUT7BB_sebdkjujmoZT57KW3nt2PG1KUQS0\"}", "role":"OWNER", "type":"USER", "status":"ACTIVE" @@ -32,8 +32,8 @@ { "kind":"admin#directory#member", "etag":"\"nqbsbhvoIENh0WbZEZYWTG7mnk2phHz4rrCEo-rHT2k/aZle5ohKQ9w1HjfzJYKkeV57qpI\"", - "id":"{\"scope\":\"gapps\",\"hash\":\"v2LlReuSjcdpk5yEymPMgOel-zueqOxVKuObpqjDgr8\"}", - "email":"{\"scope\":\"email\",\"domain\":\"acme.com\",\"hash\":\"CLvQNR1KMpLcz_v3fJuXX9IiNiF360SlRBNmPAiWY-w\"}", + "id":"{\"hash\":\"v2LlReuSjcdpk5yEymPMgOel-zueqOxVKuObpqjDgr8\"}", + "email":"{\"domain\":\"acme.com\",\"hash\":\"CLvQNR1KMpLcz_v3fJuXX9IiNiF360SlRBNmPAiWY-w\"}", "role":"MEMBER", "type":"USER", "status":"ACTIVE" @@ -41,8 +41,8 @@ { "kind":"admin#directory#member", "etag":"\"nqbsbhvoIENh0WbZEZYWTG7mnk2phHz4rrCEo-rHT2k/OXyW7YpfbUxYBHjHX3Br9lIQdmg\"", - "id":"{\"scope\":\"gapps\",\"hash\":\"8dngsJMcWteAYZMDJSUdBOGrwmPacqwpUNMsCQbtFWM\"}", - "email":"{\"scope\":\"email\",\"domain\":\"acme.com\",\"hash\":\"TQ7vhOBwM8Jra92dAsaazqMJYGE5fo3GkZPDCubSA-c\"}", + "id":"{\"hash\":\"8dngsJMcWteAYZMDJSUdBOGrwmPacqwpUNMsCQbtFWM\"}", + "email":"{\"domain\":\"acme.com\",\"hash\":\"TQ7vhOBwM8Jra92dAsaazqMJYGE5fo3GkZPDCubSA-c\"}", "role":"OWNER", "type":"USER", "status":"ACTIVE" diff --git a/docs/sources/google-workspace/directory/example-api-responses/sanitized_no-app-ids/user.json b/docs/sources/google-workspace/directory/example-api-responses/sanitized_no-app-ids/user.json index 6b52378bc..649026f51 100644 --- a/docs/sources/google-workspace/directory/example-api-responses/sanitized_no-app-ids/user.json +++ b/docs/sources/google-workspace/directory/example-api-responses/sanitized_no-app-ids/user.json @@ -2,7 +2,7 @@ "kind":"admin#directory#user", "id":"p~oNKsbK3Y8E5osRUjOgzKP-PbnPggtzc-ID2nzRt8kRNxCQZgDXdDdqs1EQ-uUbCr-JaWI7t2Ow8ZUFnFjhCu_Q", "etag":"\"g2-KWSBhdhEV1DJNuuX35hICepPpOEDe4lPvnwuxvf4/3nm0BxOJJfOv5nDTHneimEDnNRg\"", - "primaryEmail":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "primaryEmail":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "isAdmin":true, "isDelegatedAdmin":false, "lastLoginTime":"2021-10-10T14:18:21.000Z", @@ -14,55 +14,55 @@ "ipWhitelisted":false, "emails":[ { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "address":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "primary":true }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"2Go3NUnssg6ylUG5KhiUU_iia_EIH6bmHSjuxF8Oqyk\"}" + "address":"{\"domain\":\"worklytics.co\",\"hash\":\"2Go3NUnssg6ylUG5KhiUU_iia_EIH6bmHSjuxF8Oqyk\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"4JurcaYiPcpIPWoECPGFQVT4JNivIqETS68Ckjllfr0\"}" + "address":"{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"4JurcaYiPcpIPWoECPGFQVT4JNivIqETS68Ckjllfr0\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"iiBNwxiPbv8wEeXUc3XiwZhrwDWgY6ZVgUmN_kkxvLc\"}" + "address":"{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"iiBNwxiPbv8wEeXUc3XiwZhrwDWgY6ZVgUmN_kkxvLc\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ojO-cQo0BsTqF144-884OktttVmtu0XD3XG87EBSkaM\"}" + "address":"{\"domain\":\"worklytics.co\",\"hash\":\"ojO-cQo0BsTqF144-884OktttVmtu0XD3XG87EBSkaM\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"-zRca6jjo5rjm1TkZWSfDUNKCcarGOITXGdzb23WVY4\"}" + "address":"{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"-zRca6jjo5rjm1TkZWSfDUNKCcarGOITXGdzb23WVY4\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"sCbW9DlpTyWrKrvDu9Z2gwUDJpUm9TPhRsk7YJWdEgI\"}" + "address":"{\"domain\":\"worklytics.co\",\"hash\":\"sCbW9DlpTyWrKrvDu9Z2gwUDJpUm9TPhRsk7YJWdEgI\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"OkMARU2WwsONKuue1W_WH_5a629Y_oCT3OfQtanN-jE\"}" + "address":"{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"OkMARU2WwsONKuue1W_WH_5a629Y_oCT3OfQtanN-jE\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Xi6zH99auRMbxsFiQV0NB8wF5U9ITDKzRW8Whf27jbs\"}" + "address":"{\"domain\":\"worklytics.co\",\"hash\":\"Xi6zH99auRMbxsFiQV0NB8wF5U9ITDKzRW8Whf27jbs\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"FERTSysxax0kaHsIuFWjW2_gf5kpLhIQrpAYkBPrOaQ\"}" + "address":"{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"FERTSysxax0kaHsIuFWjW2_gf5kpLhIQrpAYkBPrOaQ\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"PcXFdtazNty2P-JkRp3SWzYwBhA-IF1u95MNrJl5Hr0\"}" + "address":"{\"domain\":\"in.worklytics.co\",\"hash\":\"PcXFdtazNty2P-JkRp3SWzYwBhA-IF1u95MNrJl5Hr0\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"9vNzNM4KMF1Imj6P8ia4PBu6zM16s6A-6VgxE9-vASs\"}" + "address":"{\"domain\":\"in.worklytics.co\",\"hash\":\"9vNzNM4KMF1Imj6P8ia4PBu6zM16s6A-6VgxE9-vASs\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"jaLzl86qDL6Woi3LkpG2_3mqAZaS7wRo_skQ65sYdNk\"}" + "address":"{\"domain\":\"in.worklytics.co\",\"hash\":\"jaLzl86qDL6Woi3LkpG2_3mqAZaS7wRo_skQ65sYdNk\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"0hUyOpbBY_QKYkLDvlLMtlBNCaM8obTWz-DMMGU7hSA\"}" + "address":"{\"domain\":\"in.worklytics.co\",\"hash\":\"0hUyOpbBY_QKYkLDvlLMtlBNCaM8obTWz-DMMGU7hSA\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"g4kf0AMm1hVmnx-wFC5kfHCdJY1DOlLzXRQKb5W2Z70\"}" + "address":"{\"domain\":\"in.worklytics.co\",\"hash\":\"g4kf0AMm1hVmnx-wFC5kfHCdJY1DOlLzXRQKb5W2Z70\"}" } ], "relations":[ { - "value":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", + "value":"{\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", "type":"manager" } ], @@ -77,8 +77,8 @@ "websites":[ ], "posixAccounts":[ { - "username":"{\"scope\":\"gapps\",\"hash\":\"NXK2OHOFQ2Q9KaQwtpa1jNrPXM_Td1_BV4ZpxNituaY\"}", - "uid":"{\"scope\":\"gapps\",\"hash\":\"z-Lhp-OY1j1O3yD09MLrYhaL4bxdfZfSt6912AjVCs8\"}", + "username":"{\"hash\":\"NXK2OHOFQ2Q9KaQwtpa1jNrPXM_Td1_BV4ZpxNituaY\"}", + "uid":"{\"hash\":\"z-Lhp-OY1j1O3yD09MLrYhaL4bxdfZfSt6912AjVCs8\"}", "gid":"1113066348", "systemId":"", "primary":true, @@ -87,22 +87,22 @@ ], "sshPublicKeys":[ ], "aliases":[ - "{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"2Go3NUnssg6ylUG5KhiUU_iia_EIH6bmHSjuxF8Oqyk\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ojO-cQo0BsTqF144-884OktttVmtu0XD3XG87EBSkaM\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"sCbW9DlpTyWrKrvDu9Z2gwUDJpUm9TPhRsk7YJWdEgI\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Xi6zH99auRMbxsFiQV0NB8wF5U9ITDKzRW8Whf27jbs\"}" + "{\"domain\":\"worklytics.co\",\"hash\":\"2Go3NUnssg6ylUG5KhiUU_iia_EIH6bmHSjuxF8Oqyk\"}", + "{\"domain\":\"worklytics.co\",\"hash\":\"ojO-cQo0BsTqF144-884OktttVmtu0XD3XG87EBSkaM\"}", + "{\"domain\":\"worklytics.co\",\"hash\":\"sCbW9DlpTyWrKrvDu9Z2gwUDJpUm9TPhRsk7YJWdEgI\"}", + "{\"domain\":\"worklytics.co\",\"hash\":\"Xi6zH99auRMbxsFiQV0NB8wF5U9ITDKzRW8Whf27jbs\"}" ], "nonEditableAliases":[ - "{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"4JurcaYiPcpIPWoECPGFQVT4JNivIqETS68Ckjllfr0\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"iiBNwxiPbv8wEeXUc3XiwZhrwDWgY6ZVgUmN_kkxvLc\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"-zRca6jjo5rjm1TkZWSfDUNKCcarGOITXGdzb23WVY4\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"OkMARU2WwsONKuue1W_WH_5a629Y_oCT3OfQtanN-jE\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"FERTSysxax0kaHsIuFWjW2_gf5kpLhIQrpAYkBPrOaQ\"}", - "{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"PcXFdtazNty2P-JkRp3SWzYwBhA-IF1u95MNrJl5Hr0\"}", - "{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"9vNzNM4KMF1Imj6P8ia4PBu6zM16s6A-6VgxE9-vASs\"}", - "{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"jaLzl86qDL6Woi3LkpG2_3mqAZaS7wRo_skQ65sYdNk\"}", - "{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"0hUyOpbBY_QKYkLDvlLMtlBNCaM8obTWz-DMMGU7hSA\"}", - "{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"g4kf0AMm1hVmnx-wFC5kfHCdJY1DOlLzXRQKb5W2Z70\"}" + "{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"4JurcaYiPcpIPWoECPGFQVT4JNivIqETS68Ckjllfr0\"}", + "{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"iiBNwxiPbv8wEeXUc3XiwZhrwDWgY6ZVgUmN_kkxvLc\"}", + "{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"-zRca6jjo5rjm1TkZWSfDUNKCcarGOITXGdzb23WVY4\"}", + "{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"OkMARU2WwsONKuue1W_WH_5a629Y_oCT3OfQtanN-jE\"}", + "{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"FERTSysxax0kaHsIuFWjW2_gf5kpLhIQrpAYkBPrOaQ\"}", + "{\"domain\":\"in.worklytics.co\",\"hash\":\"PcXFdtazNty2P-JkRp3SWzYwBhA-IF1u95MNrJl5Hr0\"}", + "{\"domain\":\"in.worklytics.co\",\"hash\":\"9vNzNM4KMF1Imj6P8ia4PBu6zM16s6A-6VgxE9-vASs\"}", + "{\"domain\":\"in.worklytics.co\",\"hash\":\"jaLzl86qDL6Woi3LkpG2_3mqAZaS7wRo_skQ65sYdNk\"}", + "{\"domain\":\"in.worklytics.co\",\"hash\":\"0hUyOpbBY_QKYkLDvlLMtlBNCaM8obTWz-DMMGU7hSA\"}", + "{\"domain\":\"in.worklytics.co\",\"hash\":\"g4kf0AMm1hVmnx-wFC5kfHCdJY1DOlLzXRQKb5W2Z70\"}" ], "customerId":"Y03v4af07", "orgUnitPath":"/Employees", diff --git a/docs/sources/google-workspace/directory/example-api-responses/sanitized_no-app-ids/users.json b/docs/sources/google-workspace/directory/example-api-responses/sanitized_no-app-ids/users.json index 40565e515..2b47af04b 100644 --- a/docs/sources/google-workspace/directory/example-api-responses/sanitized_no-app-ids/users.json +++ b/docs/sources/google-workspace/directory/example-api-responses/sanitized_no-app-ids/users.json @@ -6,7 +6,7 @@ "kind":"admin#directory#user", "id":"p~oNKsbK3Y8E5osRUjOgzKP-PbnPggtzc-ID2nzRt8kRNxCQZgDXdDdqs1EQ-uUbCr-JaWI7t2Ow8ZUFnFjhCu_Q", "etag":"\"g2-KWSBhdhEV1DJNuuX35hICepPpOEDe4lPvnwuxvf4/3nm0BxOJJfOv5nDTHneimEDnNRg\"", - "primaryEmail":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "primaryEmail":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "isAdmin":true, "isDelegatedAdmin":false, "lastLoginTime":"2021-10-10T14:18:21.000Z", @@ -18,55 +18,55 @@ "ipWhitelisted":false, "emails":[ { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "address":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "primary":true }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"2Go3NUnssg6ylUG5KhiUU_iia_EIH6bmHSjuxF8Oqyk\"}" + "address":"{\"domain\":\"worklytics.co\",\"hash\":\"2Go3NUnssg6ylUG5KhiUU_iia_EIH6bmHSjuxF8Oqyk\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"4JurcaYiPcpIPWoECPGFQVT4JNivIqETS68Ckjllfr0\"}" + "address":"{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"4JurcaYiPcpIPWoECPGFQVT4JNivIqETS68Ckjllfr0\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"iiBNwxiPbv8wEeXUc3XiwZhrwDWgY6ZVgUmN_kkxvLc\"}" + "address":"{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"iiBNwxiPbv8wEeXUc3XiwZhrwDWgY6ZVgUmN_kkxvLc\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ojO-cQo0BsTqF144-884OktttVmtu0XD3XG87EBSkaM\"}" + "address":"{\"domain\":\"worklytics.co\",\"hash\":\"ojO-cQo0BsTqF144-884OktttVmtu0XD3XG87EBSkaM\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"-zRca6jjo5rjm1TkZWSfDUNKCcarGOITXGdzb23WVY4\"}" + "address":"{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"-zRca6jjo5rjm1TkZWSfDUNKCcarGOITXGdzb23WVY4\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"sCbW9DlpTyWrKrvDu9Z2gwUDJpUm9TPhRsk7YJWdEgI\"}" + "address":"{\"domain\":\"worklytics.co\",\"hash\":\"sCbW9DlpTyWrKrvDu9Z2gwUDJpUm9TPhRsk7YJWdEgI\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"OkMARU2WwsONKuue1W_WH_5a629Y_oCT3OfQtanN-jE\"}" + "address":"{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"OkMARU2WwsONKuue1W_WH_5a629Y_oCT3OfQtanN-jE\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Xi6zH99auRMbxsFiQV0NB8wF5U9ITDKzRW8Whf27jbs\"}" + "address":"{\"domain\":\"worklytics.co\",\"hash\":\"Xi6zH99auRMbxsFiQV0NB8wF5U9ITDKzRW8Whf27jbs\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"FERTSysxax0kaHsIuFWjW2_gf5kpLhIQrpAYkBPrOaQ\"}" + "address":"{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"FERTSysxax0kaHsIuFWjW2_gf5kpLhIQrpAYkBPrOaQ\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"PcXFdtazNty2P-JkRp3SWzYwBhA-IF1u95MNrJl5Hr0\"}" + "address":"{\"domain\":\"in.worklytics.co\",\"hash\":\"PcXFdtazNty2P-JkRp3SWzYwBhA-IF1u95MNrJl5Hr0\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"9vNzNM4KMF1Imj6P8ia4PBu6zM16s6A-6VgxE9-vASs\"}" + "address":"{\"domain\":\"in.worklytics.co\",\"hash\":\"9vNzNM4KMF1Imj6P8ia4PBu6zM16s6A-6VgxE9-vASs\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"jaLzl86qDL6Woi3LkpG2_3mqAZaS7wRo_skQ65sYdNk\"}" + "address":"{\"domain\":\"in.worklytics.co\",\"hash\":\"jaLzl86qDL6Woi3LkpG2_3mqAZaS7wRo_skQ65sYdNk\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"0hUyOpbBY_QKYkLDvlLMtlBNCaM8obTWz-DMMGU7hSA\"}" + "address":"{\"domain\":\"in.worklytics.co\",\"hash\":\"0hUyOpbBY_QKYkLDvlLMtlBNCaM8obTWz-DMMGU7hSA\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"g4kf0AMm1hVmnx-wFC5kfHCdJY1DOlLzXRQKb5W2Z70\"}" + "address":"{\"domain\":\"in.worklytics.co\",\"hash\":\"g4kf0AMm1hVmnx-wFC5kfHCdJY1DOlLzXRQKb5W2Z70\"}" } ], "relations":[ { - "value":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", + "value":"{\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", "type":"manager" } ], @@ -81,8 +81,8 @@ "websites":[ ], "posixAccounts":[ { - "username":"{\"scope\":\"gapps\",\"hash\":\"NXK2OHOFQ2Q9KaQwtpa1jNrPXM_Td1_BV4ZpxNituaY\"}", - "uid":"{\"scope\":\"gapps\",\"hash\":\"z-Lhp-OY1j1O3yD09MLrYhaL4bxdfZfSt6912AjVCs8\"}", + "username":"{\"hash\":\"NXK2OHOFQ2Q9KaQwtpa1jNrPXM_Td1_BV4ZpxNituaY\"}", + "uid":"{\"hash\":\"z-Lhp-OY1j1O3yD09MLrYhaL4bxdfZfSt6912AjVCs8\"}", "gid":"1113066348", "systemId":"", "primary":true, @@ -91,22 +91,22 @@ ], "sshPublicKeys":[ ], "aliases":[ - "{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"2Go3NUnssg6ylUG5KhiUU_iia_EIH6bmHSjuxF8Oqyk\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ojO-cQo0BsTqF144-884OktttVmtu0XD3XG87EBSkaM\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"sCbW9DlpTyWrKrvDu9Z2gwUDJpUm9TPhRsk7YJWdEgI\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Xi6zH99auRMbxsFiQV0NB8wF5U9ITDKzRW8Whf27jbs\"}" + "{\"domain\":\"worklytics.co\",\"hash\":\"2Go3NUnssg6ylUG5KhiUU_iia_EIH6bmHSjuxF8Oqyk\"}", + "{\"domain\":\"worklytics.co\",\"hash\":\"ojO-cQo0BsTqF144-884OktttVmtu0XD3XG87EBSkaM\"}", + "{\"domain\":\"worklytics.co\",\"hash\":\"sCbW9DlpTyWrKrvDu9Z2gwUDJpUm9TPhRsk7YJWdEgI\"}", + "{\"domain\":\"worklytics.co\",\"hash\":\"Xi6zH99auRMbxsFiQV0NB8wF5U9ITDKzRW8Whf27jbs\"}" ], "nonEditableAliases":[ - "{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"4JurcaYiPcpIPWoECPGFQVT4JNivIqETS68Ckjllfr0\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"iiBNwxiPbv8wEeXUc3XiwZhrwDWgY6ZVgUmN_kkxvLc\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"-zRca6jjo5rjm1TkZWSfDUNKCcarGOITXGdzb23WVY4\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"OkMARU2WwsONKuue1W_WH_5a629Y_oCT3OfQtanN-jE\"}", - "{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"FERTSysxax0kaHsIuFWjW2_gf5kpLhIQrpAYkBPrOaQ\"}", - "{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"PcXFdtazNty2P-JkRp3SWzYwBhA-IF1u95MNrJl5Hr0\"}", - "{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"9vNzNM4KMF1Imj6P8ia4PBu6zM16s6A-6VgxE9-vASs\"}", - "{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"jaLzl86qDL6Woi3LkpG2_3mqAZaS7wRo_skQ65sYdNk\"}", - "{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"0hUyOpbBY_QKYkLDvlLMtlBNCaM8obTWz-DMMGU7hSA\"}", - "{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"g4kf0AMm1hVmnx-wFC5kfHCdJY1DOlLzXRQKb5W2Z70\"}" + "{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"4JurcaYiPcpIPWoECPGFQVT4JNivIqETS68Ckjllfr0\"}", + "{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"iiBNwxiPbv8wEeXUc3XiwZhrwDWgY6ZVgUmN_kkxvLc\"}", + "{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"-zRca6jjo5rjm1TkZWSfDUNKCcarGOITXGdzb23WVY4\"}", + "{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"OkMARU2WwsONKuue1W_WH_5a629Y_oCT3OfQtanN-jE\"}", + "{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"FERTSysxax0kaHsIuFWjW2_gf5kpLhIQrpAYkBPrOaQ\"}", + "{\"domain\":\"in.worklytics.co\",\"hash\":\"PcXFdtazNty2P-JkRp3SWzYwBhA-IF1u95MNrJl5Hr0\"}", + "{\"domain\":\"in.worklytics.co\",\"hash\":\"9vNzNM4KMF1Imj6P8ia4PBu6zM16s6A-6VgxE9-vASs\"}", + "{\"domain\":\"in.worklytics.co\",\"hash\":\"jaLzl86qDL6Woi3LkpG2_3mqAZaS7wRo_skQ65sYdNk\"}", + "{\"domain\":\"in.worklytics.co\",\"hash\":\"0hUyOpbBY_QKYkLDvlLMtlBNCaM8obTWz-DMMGU7hSA\"}", + "{\"domain\":\"in.worklytics.co\",\"hash\":\"g4kf0AMm1hVmnx-wFC5kfHCdJY1DOlLzXRQKb5W2Z70\"}" ], "customerId":"Y03v4af07", "orgUnitPath":"/Employees", @@ -120,7 +120,7 @@ "kind":"admin#directory#user", "id":"p~g3ohXT2tEUUlzUii8CezGBYONzDWWBeEWFMzzGxPqqs9kMnhjr7IXSUalkUwyJPq", "etag":"\"g2-KWSBhdhEV1DJNuuX35hICepPpOEDe4lPvnwuxvf4/MW5lZemqM7i3B82DXmbR3pne-KM\"", - "primaryEmail":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", + "primaryEmail":"{\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", "isAdmin":true, "isDelegatedAdmin":false, "lastLoginTime":"2021-10-08T14:05:25.000Z", @@ -132,19 +132,19 @@ "ipWhitelisted":false, "emails":[ { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", + "address":"{\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", "primary":true }, { - "address":"{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"JUaCPJoOYfls-GMYa6BUYCd2hVFlftsxCAsgDwY939U\"}" + "address":"{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"JUaCPJoOYfls-GMYa6BUYCd2hVFlftsxCAsgDwY939U\"}" }, { - "address":"{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"8eXn99TZqk-q25JqvcGGKHsJYUX-2ZpsEyGTSOvkpHw\"}" + "address":"{\"domain\":\"in.worklytics.co\",\"hash\":\"8eXn99TZqk-q25JqvcGGKHsJYUX-2ZpsEyGTSOvkpHw\"}" } ], "nonEditableAliases":[ - "{\"scope\":\"email\",\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"JUaCPJoOYfls-GMYa6BUYCd2hVFlftsxCAsgDwY939U\"}", - "{\"scope\":\"email\",\"domain\":\"in.worklytics.co\",\"hash\":\"8eXn99TZqk-q25JqvcGGKHsJYUX-2ZpsEyGTSOvkpHw\"}" + "{\"domain\":\"worklytics.co.test-google-a.com\",\"hash\":\"JUaCPJoOYfls-GMYa6BUYCd2hVFlftsxCAsgDwY939U\"}", + "{\"domain\":\"in.worklytics.co\",\"hash\":\"8eXn99TZqk-q25JqvcGGKHsJYUX-2ZpsEyGTSOvkpHw\"}" ], "gender":{ "type":"male" diff --git a/docs/sources/google-workspace/gdrive/example-api-responses/v2-sanitized/files.json b/docs/sources/google-workspace/gdrive/example-api-responses/v2-sanitized/files.json index 3e558eac8..ae0930384 100644 --- a/docs/sources/google-workspace/gdrive/example-api-responses/v2-sanitized/files.json +++ b/docs/sources/google-workspace/gdrive/example-api-responses/v2-sanitized/files.json @@ -31,14 +31,14 @@ "kind":"drive#user", "me":false, "permissionId":"02185925293822571813", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}" + "emailAddress":"{\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}" } ], "lastModifyingUser":{ "kind":"drive#user", "me":false, "permissionId":"02185925293822571813", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}" + "emailAddress":"{\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}" }, "shared":true, "ownedByMe":false, @@ -75,7 +75,7 @@ "kind":"drive#permission", "id":"00343915730182430912", "type":"user", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"p4EqhPet-p2vhJbMJD5jrbrlJtF21L0TOl8bBtjrNpk\"}", + "emailAddress":"{\"domain\":\"worklytics.co\",\"hash\":\"p4EqhPet-p2vhJbMJD5jrbrlJtF21L0TOl8bBtjrNpk\"}", "role":"writer", "deleted":false }, @@ -83,7 +83,7 @@ "kind":"drive#permission", "id":"16513690099496370655", "type":"user", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "emailAddress":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "role":"writer", "deleted":false }, @@ -91,7 +91,7 @@ "kind":"drive#permission", "id":"02185925293822571813", "type":"user", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", + "emailAddress":"{\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", "role":"owner", "deleted":false } diff --git a/docs/sources/google-workspace/gdrive/example-api-responses/v2-sanitized/permission.json b/docs/sources/google-workspace/gdrive/example-api-responses/v2-sanitized/permission.json index 4aa943c3f..0d6550f32 100644 --- a/docs/sources/google-workspace/gdrive/example-api-responses/v2-sanitized/permission.json +++ b/docs/sources/google-workspace/gdrive/example-api-responses/v2-sanitized/permission.json @@ -3,7 +3,7 @@ "etag":"\"_R8P43oBhIhNTnhIfz6n3nucVjg\"", "id":"16513690099496370655", "selfLink":"https://www.googleapis.com/drive/v2/files/1dCzjG8gA3CkXkNs3qgAj8ruuDLCz-Wrwdo4CIiIBACs/permissions/16513690099496370655", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "emailAddress":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "domain":"worklytics.co", "role":"owner", "type":"user", diff --git a/docs/sources/google-workspace/gdrive/example-api-responses/v2-sanitized/permissions.json b/docs/sources/google-workspace/gdrive/example-api-responses/v2-sanitized/permissions.json index a45452f53..18bbc3989 100644 --- a/docs/sources/google-workspace/gdrive/example-api-responses/v2-sanitized/permissions.json +++ b/docs/sources/google-workspace/gdrive/example-api-responses/v2-sanitized/permissions.json @@ -8,7 +8,7 @@ "etag":"\"VRHw-GJDUtZTeKKQoMFmiGcDF7w\"", "id":"00343915730182430912", "selfLink":"https://www.googleapis.com/drive/v2/files/1dCzjG8gA3CkXkNs3qgAj8ruuDLCz-Wrwdo4CIiIBACs/permissions/00343915730182430912", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"p4EqhPet-p2vhJbMJD5jrbrlJtF21L0TOl8bBtjrNpk\"}", + "emailAddress":"{\"domain\":\"worklytics.co\",\"hash\":\"p4EqhPet-p2vhJbMJD5jrbrlJtF21L0TOl8bBtjrNpk\"}", "domain":"worklytics.co", "role":"writer", "type":"user", @@ -20,7 +20,7 @@ "etag":"\"KDYzlbvZHiUmW_TZ9cv72iZ71ms\"", "id":"02185925293822571813", "selfLink":"https://www.googleapis.com/drive/v2/files/1dCzjG8gA3CkXkNs3qgAj8ruuDLCz-Wrwdo4CIiIBACs/permissions/02185925293822571813", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", + "emailAddress":"{\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", "domain":"worklytics.co", "role":"writer", "type":"user", @@ -32,7 +32,7 @@ "etag":"\"enykGsg2km9T-6-AkeC7xMdMmzc\"", "id":"16513690099496370655", "selfLink":"https://www.googleapis.com/drive/v2/files/1dCzjG8gA3CkXkNs3qgAj8ruuDLCz-Wrwdo4CIiIBACs/permissions/16513690099496370655", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "emailAddress":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "domain":"worklytics.co", "role":"owner", "type":"user", diff --git a/docs/sources/google-workspace/gdrive/example-api-responses/v2-sanitized/revision.json b/docs/sources/google-workspace/gdrive/example-api-responses/v2-sanitized/revision.json index f3e65c4ca..47312bbfc 100644 --- a/docs/sources/google-workspace/gdrive/example-api-responses/v2-sanitized/revision.json +++ b/docs/sources/google-workspace/gdrive/example-api-responses/v2-sanitized/revision.json @@ -19,6 +19,6 @@ "kind":"drive#user", "isAuthenticatedUser":true, "permissionId":"123421341512341234", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}" + "emailAddress":"{\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}" } } diff --git a/docs/sources/google-workspace/gdrive/example-api-responses/v2-sanitized/revisions.json b/docs/sources/google-workspace/gdrive/example-api-responses/v2-sanitized/revisions.json index 6e0aa433f..b78231250 100644 --- a/docs/sources/google-workspace/gdrive/example-api-responses/v2-sanitized/revisions.json +++ b/docs/sources/google-workspace/gdrive/example-api-responses/v2-sanitized/revisions.json @@ -25,7 +25,7 @@ "kind":"drive#user", "isAuthenticatedUser":false, "permissionId":"02185925293822571813", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}" + "emailAddress":"{\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}" } }, { @@ -50,7 +50,7 @@ "kind":"drive#user", "isAuthenticatedUser":false, "permissionId":"02185925293822571813", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}" + "emailAddress":"{\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}" } } ] diff --git a/docs/sources/google-workspace/gdrive/example-api-responses/v3-sanitized/files.json b/docs/sources/google-workspace/gdrive/example-api-responses/v3-sanitized/files.json index 7996cf422..b52f481ae 100644 --- a/docs/sources/google-workspace/gdrive/example-api-responses/v3-sanitized/files.json +++ b/docs/sources/google-workspace/gdrive/example-api-responses/v3-sanitized/files.json @@ -31,14 +31,14 @@ "kind":"drive#user", "me":false, "permissionId":"02185925293822571813", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"rVTRd0tTDzW6C2bnlwZ8h0afsRh_AYQheCeI9BRyjiI\"}" + "emailAddress":"{\"domain\":\"worklytics.co\",\"hash\":\"rVTRd0tTDzW6C2bnlwZ8h0afsRh_AYQheCeI9BRyjiI\"}" } ], "lastModifyingUser":{ "kind":"drive#user", "me":false, "permissionId":"02185925293822571813", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"rVTRd0tTDzW6C2bnlwZ8h0afsRh_AYQheCeI9BRyjiI\"}" + "emailAddress":"{\"domain\":\"worklytics.co\",\"hash\":\"rVTRd0tTDzW6C2bnlwZ8h0afsRh_AYQheCeI9BRyjiI\"}" }, "shared":true, "ownedByMe":false, @@ -76,7 +76,7 @@ "kind":"drive#permission", "id":"16513690099496370655", "type":"user", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "emailAddress":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "role":"writer", "deleted":false, "pendingOwner":false @@ -85,7 +85,7 @@ "kind":"drive#permission", "id":"02185925293822571813", "type":"user", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"rVTRd0tTDzW6C2bnlwZ8h0afsRh_AYQheCeI9BRyjiI\"}", + "emailAddress":"{\"domain\":\"worklytics.co\",\"hash\":\"rVTRd0tTDzW6C2bnlwZ8h0afsRh_AYQheCeI9BRyjiI\"}", "role":"owner", "deleted":false, "pendingOwner":false diff --git a/docs/sources/google-workspace/gdrive/example-api-responses/v3-sanitized/permission.json b/docs/sources/google-workspace/gdrive/example-api-responses/v3-sanitized/permission.json index 3ac4791c8..af594b51a 100644 --- a/docs/sources/google-workspace/gdrive/example-api-responses/v3-sanitized/permission.json +++ b/docs/sources/google-workspace/gdrive/example-api-responses/v3-sanitized/permission.json @@ -2,7 +2,7 @@ "kind":"drive#permission", "id":"16513690099496370655", "type":"user", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "emailAddress":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "role":"owner", "deleted":false, "pendingOwner":false diff --git a/docs/sources/google-workspace/gdrive/example-api-responses/v3-sanitized/permissions.json b/docs/sources/google-workspace/gdrive/example-api-responses/v3-sanitized/permissions.json index 5770cb441..19035439f 100644 --- a/docs/sources/google-workspace/gdrive/example-api-responses/v3-sanitized/permissions.json +++ b/docs/sources/google-workspace/gdrive/example-api-responses/v3-sanitized/permissions.json @@ -5,7 +5,7 @@ "kind":"drive#permission", "id":"00343915730182430912", "type":"user", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"p4EqhPet-p2vhJbMJD5jrbrlJtF21L0TOl8bBtjrNpk\"}", + "emailAddress":"{\"domain\":\"worklytics.co\",\"hash\":\"p4EqhPet-p2vhJbMJD5jrbrlJtF21L0TOl8bBtjrNpk\"}", "role":"writer", "deleted":false, "pendingOwner":false @@ -14,7 +14,7 @@ "kind":"drive#permission", "id":"02185925293822571813", "type":"user", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", + "emailAddress":"{\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", "role":"writer", "deleted":false, "pendingOwner":false @@ -23,7 +23,7 @@ "kind":"drive#permission", "id":"16513690099496370655", "type":"user", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", + "emailAddress":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}", "role":"owner", "deleted":false, "pendingOwner":false diff --git a/docs/sources/google-workspace/gdrive/example-api-responses/v3-sanitized/revision.json b/docs/sources/google-workspace/gdrive/example-api-responses/v3-sanitized/revision.json index 64fbfcfa6..00612f257 100644 --- a/docs/sources/google-workspace/gdrive/example-api-responses/v3-sanitized/revision.json +++ b/docs/sources/google-workspace/gdrive/example-api-responses/v3-sanitized/revision.json @@ -9,7 +9,7 @@ "kind":"drive#user", "me":false, "permissionId":"02185925293822571813", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"rVTRd0tTDzW6C2bnlwZ8h0afsRh_AYQheCeI9BRyjiI\"}" + "emailAddress":"{\"domain\":\"worklytics.co\",\"hash\":\"rVTRd0tTDzW6C2bnlwZ8h0afsRh_AYQheCeI9BRyjiI\"}" }, "md5Checksum":"2c3f517e181dd49aa9f97580d3ec1431", "size":"759602" diff --git a/docs/sources/google-workspace/gdrive/example-api-responses/v3-sanitized/revisions.json b/docs/sources/google-workspace/gdrive/example-api-responses/v3-sanitized/revisions.json index d3c88845e..de8e53a8d 100644 --- a/docs/sources/google-workspace/gdrive/example-api-responses/v3-sanitized/revisions.json +++ b/docs/sources/google-workspace/gdrive/example-api-responses/v3-sanitized/revisions.json @@ -12,7 +12,7 @@ "kind":"drive#user", "me":false, "permissionId":"02185925293822571813", - "emailAddress":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"rVTRd0tTDzW6C2bnlwZ8h0afsRh_AYQheCeI9BRyjiI\"}" + "emailAddress":"{\"domain\":\"worklytics.co\",\"hash\":\"rVTRd0tTDzW6C2bnlwZ8h0afsRh_AYQheCeI9BRyjiI\"}" }, "md5Checksum":"2c3f517e181dd49aa9f97580d3ec1431", "size":"759602" diff --git a/docs/sources/google-workspace/gmail/example-api-responses/sanitized/message.json b/docs/sources/google-workspace/gmail/example-api-responses/sanitized/message.json index f498f4153..2f40dbf61 100644 --- a/docs/sources/google-workspace/gmail/example-api-responses/sanitized/message.json +++ b/docs/sources/google-workspace/gmail/example-api-responses/sanitized/message.json @@ -12,7 +12,7 @@ "headers":[ { "name":"Delivered-To", - "value":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}" + "value":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}" }, { "name":"Date", @@ -20,7 +20,7 @@ }, { "name":"From", - "value":"[{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"EsXNVTaSltmDUIO4v8CixL66qkCKLlpLB_RHysHbQSQ\"}]" + "value":"[{\"domain\":\"worklytics.co\",\"hash\":\"EsXNVTaSltmDUIO4v8CixL66qkCKLlpLB_RHysHbQSQ\"}]" }, { "name":"Message-ID", @@ -28,19 +28,19 @@ }, { "name":"To", - "value":"[{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"t9en8zJVP-3M_f0Zce7WRyACl2EWLeGy_fSnrtJpHm4\"}]" + "value":"[{\"domain\":\"worklytics.co\",\"hash\":\"t9en8zJVP-3M_f0Zce7WRyACl2EWLeGy_fSnrtJpHm4\"}]" }, { "name":"Cc", - "value":"[{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"vZ8I4uZkcdXvnp57XCjVY_bJKr9vZpkDsWBDY3m-qTs\"},{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"FRffHsKrFsvq64VMg84_x1stbyhhFwldLDdV6-8F-No\"}]" + "value":"[{\"domain\":\"worklytics.co\",\"hash\":\"vZ8I4uZkcdXvnp57XCjVY_bJKr9vZpkDsWBDY3m-qTs\"},{\"domain\":\"worklytics.co\",\"hash\":\"FRffHsKrFsvq64VMg84_x1stbyhhFwldLDdV6-8F-No\"}]" }, { "name":"bcC", - "value":"[{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"TtDWXFAQxNE8O2w7DuMtEKzTSZXERuUVLCjmd9r6KQ4\"},{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"p4EqhPet-p2vhJbMJD5jrbrlJtF21L0TOl8bBtjrNpk\"}]" + "value":"[{\"domain\":\"worklytics.co\",\"hash\":\"TtDWXFAQxNE8O2w7DuMtEKzTSZXERuUVLCjmd9r6KQ4\"},{\"domain\":\"worklytics.co\",\"hash\":\"p4EqhPet-p2vhJbMJD5jrbrlJtF21L0TOl8bBtjrNpk\"}]" }, { "name":"X-Original-Sender", - "value":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"EsXNVTaSltmDUIO4v8CixL66qkCKLlpLB_RHysHbQSQ\"}" + "value":"{\"domain\":\"worklytics.co\",\"hash\":\"EsXNVTaSltmDUIO4v8CixL66qkCKLlpLB_RHysHbQSQ\"}" } ] }, diff --git a/docs/sources/google-workspace/meet/example-api-responses/sanitized/meet-activities.json b/docs/sources/google-workspace/meet/example-api-responses/sanitized/meet-activities.json index f704cc582..7ee7a3659 100644 --- a/docs/sources/google-workspace/meet/example-api-responses/sanitized/meet-activities.json +++ b/docs/sources/google-workspace/meet/example-api-responses/sanitized/meet-activities.json @@ -14,7 +14,7 @@ "etag":"\"g2-KWSBhdhEV1DJNuuX35hICepPpOEDe4lPvnwuxvf4/PAymcrru6IH88Gbuhjp_QUb9bsM\"", "actor":{ "callerType":"USER", - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"N7KL1RlAGqPFhFxRWCW0yVybYxaeFleLKSfzsA7iTqg\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"N7KL1RlAGqPFhFxRWCW0yVybYxaeFleLKSfzsA7iTqg\"}", "profileId":"117927411761819390794" }, "events":[ @@ -56,7 +56,7 @@ }, { "name":"identifier", - "value":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"N7KL1RlAGqPFhFxRWCW0yVybYxaeFleLKSfzsA7iTqg\"}" + "value":"{\"domain\":\"worklytics.co\",\"hash\":\"N7KL1RlAGqPFhFxRWCW0yVybYxaeFleLKSfzsA7iTqg\"}" }, { "name":"location_region", @@ -64,11 +64,11 @@ }, { "name":"organizer_email", - "value":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}" + "value":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}" }, { "name":"ip_address", - "value":"{\"scope\":\"gapps\",\"hash\":\"WfmpRw2F8j0xnCafod3Vgkkyj7AhJnZTMIzyQcyyAxA\"}" + "value":"{\"hash\":\"WfmpRw2F8j0xnCafod3Vgkkyj7AhJnZTMIzyQcyyAxA\"}" }, { "name":"audio_send_seconds", @@ -113,7 +113,7 @@ "etag":"\"g2-KWSBhdhEV1DJNuuX35hICepPpOEDe4lPvnwuxvf4/bfNuMpXQEesjAyNekWjwO9Z3ohQ\"", "actor":{ "callerType":"USER", - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"p4EqhPet-p2vhJbMJD5jrbrlJtF21L0TOl8bBtjrNpk\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"p4EqhPet-p2vhJbMJD5jrbrlJtF21L0TOl8bBtjrNpk\"}", "profileId":"114349793749086722850" }, "events":[ @@ -155,7 +155,7 @@ }, { "name":"identifier", - "value":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"p4EqhPet-p2vhJbMJD5jrbrlJtF21L0TOl8bBtjrNpk\"}" + "value":"{\"domain\":\"worklytics.co\",\"hash\":\"p4EqhPet-p2vhJbMJD5jrbrlJtF21L0TOl8bBtjrNpk\"}" }, { "name":"location_region", @@ -163,11 +163,11 @@ }, { "name":"organizer_email", - "value":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}" + "value":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}" }, { "name":"ip_address", - "value":"{\"scope\":\"gapps\",\"hash\":\"sKy2eZokin-MzmwodKSn7lwJ3uuZ4ZoIKFH77cVBM50\"}" + "value":"{\"hash\":\"sKy2eZokin-MzmwodKSn7lwJ3uuZ4ZoIKFH77cVBM50\"}" }, { "name":"audio_send_seconds", @@ -212,7 +212,7 @@ "etag":"\"g2-KWSBhdhEV1DJNuuX35hICepPpOEDe4lPvnwuxvf4/FrxCL4LLjbUwKaJQMh7ovJF4V2U\"", "actor":{ "callerType":"USER", - "email":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", + "email":"{\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}", "profileId":"100531288453445237356" }, "events":[ @@ -254,7 +254,7 @@ }, { "name":"identifier", - "value":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}" + "value":"{\"domain\":\"worklytics.co\",\"hash\":\"ANg5l6XVBpn-KyO-ivYDGQwZViEvM2uhytCnKiB0qr4\"}" }, { "name":"location_region", @@ -262,11 +262,11 @@ }, { "name":"organizer_email", - "value":"{\"scope\":\"email\",\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}" + "value":"{\"domain\":\"worklytics.co\",\"hash\":\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"}" }, { "name":"ip_address", - "value":"{\"scope\":\"gapps\",\"hash\":\"GHzNx7nEWMgZRSNkep0upj1HTeXY0Md8bMHOwNT76BE\"}" + "value":"{\"hash\":\"GHzNx7nEWMgZRSNkep0upj1HTeXY0Md8bMHOwNT76BE\"}" }, { "name":"audio_send_seconds", diff --git a/docs/sources/microsoft-365/entra-id/example-api-responses/sanitized/group-members.json b/docs/sources/microsoft-365/entra-id/example-api-responses/sanitized/group-members.json index fa4d41d0d..30978f503 100644 --- a/docs/sources/microsoft-365/entra-id/example-api-responses/sanitized/group-members.json +++ b/docs/sources/microsoft-365/entra-id/example-api-responses/sanitized/group-members.json @@ -5,172 +5,172 @@ "@odata.type":"#microsoft.graph.user", "id":"87d349ed-44d7-43e1-9a83-5f2406dee5bd", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"1ZU-v2EwymdtJwCKzuncgUnOxX8V-MbE-FgKEvcj6J8\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"1ZU-v2EwymdtJwCKzuncgUnOxX8V-MbE-FgKEvcj6J8\"}", "officeLocation":"18/2111", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"1ZU-v2EwymdtJwCKzuncgUnOxX8V-MbE-FgKEvcj6J8\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"1ZU-v2EwymdtJwCKzuncgUnOxX8V-MbE-FgKEvcj6J8\"}" }, { "@odata.type":"#microsoft.graph.user", "id":"626cbf8c-5dde-46b0-8385-9e40d64736fe", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"KDHHtwETokpIrd-0CMxrNe2pku8bSufS9D5ZG5gdKrg\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"KDHHtwETokpIrd-0CMxrNe2pku8bSufS9D5ZG5gdKrg\"}", "officeLocation":"23/2102", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"KDHHtwETokpIrd-0CMxrNe2pku8bSufS9D5ZG5gdKrg\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"KDHHtwETokpIrd-0CMxrNe2pku8bSufS9D5ZG5gdKrg\"}" }, { "@odata.type":"#microsoft.graph.user", "id":"40079818-3808-4585-903b-02605f061225", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yXsuWvjfGM2Okdqi_8ytlEfiN7dNqY_IfJEyzEE9jWo\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yXsuWvjfGM2Okdqi_8ytlEfiN7dNqY_IfJEyzEE9jWo\"}", "officeLocation":"15/1102", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yXsuWvjfGM2Okdqi_8ytlEfiN7dNqY_IfJEyzEE9jWo\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yXsuWvjfGM2Okdqi_8ytlEfiN7dNqY_IfJEyzEE9jWo\"}" }, { "@odata.type":"#microsoft.graph.user", "id":"074e56ea-0b50-4461-89e5-c67ae14a2c0b", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"ozJYl2KkP4ztQiof64QWgNtS5hx1czNS6pawH3v0AZw\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"ozJYl2KkP4ztQiof64QWgNtS5hx1czNS6pawH3v0AZw\"}", "officeLocation":"23/3101", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"ozJYl2KkP4ztQiof64QWgNtS5hx1czNS6pawH3v0AZw\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"ozJYl2KkP4ztQiof64QWgNtS5hx1czNS6pawH3v0AZw\"}" }, { "@odata.type":"#microsoft.graph.user", "id":"16cfe710-1625-4806-9990-91b8f0afee35", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"MVn_bPW8RmDL-2W6UHPPtKjrI0KVxRk08ZNvfUOnSjg\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"MVn_bPW8RmDL-2W6UHPPtKjrI0KVxRk08ZNvfUOnSjg\"}", "officeLocation":"14/1102", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"MVn_bPW8RmDL-2W6UHPPtKjrI0KVxRk08ZNvfUOnSjg\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"MVn_bPW8RmDL-2W6UHPPtKjrI0KVxRk08ZNvfUOnSjg\"}" }, { "@odata.type":"#microsoft.graph.user", "id":"089a6bb8-e8cb-492c-aa41-c078aa0b5120", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"DUyi5q8wChUJyCkMpodc7ASWD4pD-dW9GgQd6xLZQL4\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"DUyi5q8wChUJyCkMpodc7ASWD4pD-dW9GgQd6xLZQL4\"}", "officeLocation":"36/2121", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"DUyi5q8wChUJyCkMpodc7ASWD4pD-dW9GgQd6xLZQL4\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"DUyi5q8wChUJyCkMpodc7ASWD4pD-dW9GgQd6xLZQL4\"}" }, { "@odata.type":"#microsoft.graph.user", "id":"2804bc07-1e1f-4938-9085-ce6d756a32d2", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}", "officeLocation":"97/2302", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" }, { "@odata.type":"#microsoft.graph.user", "id":"b66ecf79-a093-4d51-86e0-efcc4531f37a", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xrI7EzSIq--CC6P9nUMgEfPMi4Op5rBR66-6nr1QwUI\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xrI7EzSIq--CC6P9nUMgEfPMi4Op5rBR66-6nr1QwUI\"}", "officeLocation":"131/2105", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xrI7EzSIq--CC6P9nUMgEfPMi4Op5rBR66-6nr1QwUI\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xrI7EzSIq--CC6P9nUMgEfPMi4Op5rBR66-6nr1QwUI\"}" }, { "@odata.type":"#microsoft.graph.user", "id":"8b209ac8-08ff-4ef1-896d-3b9fde0bbf04", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yUp1exGSyddJ3c1HtMLtAg4YSVUlV3s5VSyz8iWgCiY\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yUp1exGSyddJ3c1HtMLtAg4YSVUlV3s5VSyz8iWgCiY\"}", "officeLocation":"20/1109", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yUp1exGSyddJ3c1HtMLtAg4YSVUlV3s5VSyz8iWgCiY\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yUp1exGSyddJ3c1HtMLtAg4YSVUlV3s5VSyz8iWgCiY\"}" }, { "@odata.type":"#microsoft.graph.user", "id":"4782e723-f4f4-4af3-a76e-25e3bab0d896", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"Obq2eJM8H6PaBmbsLgcx0lmrKetFS9OTpk2LuaA-goI\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"Obq2eJM8H6PaBmbsLgcx0lmrKetFS9OTpk2LuaA-goI\"}", "officeLocation":"131/1104", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"Obq2eJM8H6PaBmbsLgcx0lmrKetFS9OTpk2LuaA-goI\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"Obq2eJM8H6PaBmbsLgcx0lmrKetFS9OTpk2LuaA-goI\"}" }, { "@odata.type":"#microsoft.graph.user", "id":"08fa38e4-cbfa-4488-94ed-c834da6539df", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"mMw0NyWtsdA7ZqfNWAc63W4_UOAAS9wxZZAEzIsOkAw\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"mMw0NyWtsdA7ZqfNWAc63W4_UOAAS9wxZZAEzIsOkAw\"}", "officeLocation":"131/2103", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"mMw0NyWtsdA7ZqfNWAc63W4_UOAAS9wxZZAEzIsOkAw\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"mMw0NyWtsdA7ZqfNWAc63W4_UOAAS9wxZZAEzIsOkAw\"}" }, { "@odata.type":"#microsoft.graph.user", "id":"24fcbca3-c3e2-48bf-9ffc-c7f81b81483d", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"VzIqpdtScbANlMr2k0A3A2IqLLBFnoDu7gtw90wPEJc\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"VzIqpdtScbANlMr2k0A3A2IqLLBFnoDu7gtw90wPEJc\"}", "officeLocation":"14/1108", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"VzIqpdtScbANlMr2k0A3A2IqLLBFnoDu7gtw90wPEJc\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"VzIqpdtScbANlMr2k0A3A2IqLLBFnoDu7gtw90wPEJc\"}" }, { "@odata.type":"#microsoft.graph.user", "id":"2ed03dfd-01d8-4005-a9ef-fa8ee546dc6c", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"HRu855Q5bqB3kj1bf9LTO_ykCwHLiAklcYWUdvvIZU8\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"HRu855Q5bqB3kj1bf9LTO_ykCwHLiAklcYWUdvvIZU8\"}", "officeLocation":"20/2107", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"HRu855Q5bqB3kj1bf9LTO_ykCwHLiAklcYWUdvvIZU8\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"HRu855Q5bqB3kj1bf9LTO_ykCwHLiAklcYWUdvvIZU8\"}" }, { "@odata.type":"#microsoft.graph.user", "id":"df043ff1-49d5-414e-86a4-0c7f239c36cf", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"PS5V_GyzVyXk6jjkY-cKVd9UubD2yEntUABT3W6PyT0\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"PS5V_GyzVyXk6jjkY-cKVd9UubD2yEntUABT3W6PyT0\"}", "officeLocation":"19/2109", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"PS5V_GyzVyXk6jjkY-cKVd9UubD2yEntUABT3W6PyT0\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"PS5V_GyzVyXk6jjkY-cKVd9UubD2yEntUABT3W6PyT0\"}" }, { "@odata.type":"#microsoft.graph.user", "id":"ec63c778-24e1-4240-bea3-d12a167d5232", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"sQ8f9DihI2g9i17LxQ_GdZsNkUYpKp5A82AXup1YDwQ\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"sQ8f9DihI2g9i17LxQ_GdZsNkUYpKp5A82AXup1YDwQ\"}", "officeLocation":"98/2202", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"sQ8f9DihI2g9i17LxQ_GdZsNkUYpKp5A82AXup1YDwQ\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"sQ8f9DihI2g9i17LxQ_GdZsNkUYpKp5A82AXup1YDwQ\"}" }, { "@odata.type":"#microsoft.graph.user", "id":"48d31887-5fad-4d73-a9f5-3c356e68a038", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}", "officeLocation":"12/1110", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" }, { "@odata.type":"#microsoft.graph.user", "id":"e8a02cc7-df4d-4778-956d-784cc9506e5a", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"35oOumhzn8j-tFjW0z9p4J4Qn1R7MNx-ueJ0l_nbl2Q\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"35oOumhzn8j-tFjW0z9p4J4Qn1R7MNx-ueJ0l_nbl2Q\"}", "officeLocation":"20/1104", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"35oOumhzn8j-tFjW0z9p4J4Qn1R7MNx-ueJ0l_nbl2Q\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"35oOumhzn8j-tFjW0z9p4J4Qn1R7MNx-ueJ0l_nbl2Q\"}" }, { "@odata.type":"#microsoft.graph.user", "id":"c8913c86-ceea-4d39-b1ea-f63a5b675166", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xzuczado8k_3rlH_zDVGqdQF2xvtCsyfe50ss4MR280\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xzuczado8k_3rlH_zDVGqdQF2xvtCsyfe50ss4MR280\"}", "officeLocation":"18/1106", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xzuczado8k_3rlH_zDVGqdQF2xvtCsyfe50ss4MR280\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xzuczado8k_3rlH_zDVGqdQF2xvtCsyfe50ss4MR280\"}" }, { "@odata.type":"#microsoft.graph.user", "id":"e3d0513b-449e-4198-ba6f-bd97ae7cae85", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}", "officeLocation":"20/1101", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" } ] } diff --git a/docs/sources/microsoft-365/entra-id/example-api-responses/sanitized/user.json b/docs/sources/microsoft-365/entra-id/example-api-responses/sanitized/user.json index b35dd06bf..e05b5090b 100644 --- a/docs/sources/microsoft-365/entra-id/example-api-responses/sanitized/user.json +++ b/docs/sources/microsoft-365/entra-id/example-api-responses/sanitized/user.json @@ -1,13 +1,13 @@ { "@odata.context":"https://graph.microsoft.com/v1.0/$metadata#users/$entity", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}", "officeLocation":"12/1110", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}", + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}", "id":"48d31887-5fad-4d73-a9f5-3c356e68a038", "otherMails":[ - "{\"scope\":\"email\",\"domain\":\"gmail.com\",\"hash\":\"9hOtJuGJwqk4-lnsJ2csmTnmD9R_Y28iXox85gjemWU\"}" + "{\"domain\":\"gmail.com\",\"hash\":\"9hOtJuGJwqk4-lnsJ2csmTnmD9R_Y28iXox85gjemWU\"}" ], "proxyAddresses":[ "SMTP:t~aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg@M365x214355.onmicrosoft.com", diff --git a/docs/sources/microsoft-365/entra-id/example-api-responses/sanitized/users.json b/docs/sources/microsoft-365/entra-id/example-api-responses/sanitized/users.json index af6444d63..e8af8c585 100644 --- a/docs/sources/microsoft-365/entra-id/example-api-responses/sanitized/users.json +++ b/docs/sources/microsoft-365/entra-id/example-api-responses/sanitized/users.json @@ -4,12 +4,12 @@ { "id":"cdfb873d-61f9-4656-bbbb-9e49fba4de97", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"80OuLKaSEacbENaFngf3v1Ul1rcs-6BmJRZsfb9scss\"}", + "mail":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"80OuLKaSEacbENaFngf3v1Ul1rcs-6BmJRZsfb9scss\"}", "officeLocation":null, "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"80OuLKaSEacbENaFngf3v1Ul1rcs-6BmJRZsfb9scss\"}", + "userPrincipalName":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"80OuLKaSEacbENaFngf3v1Ul1rcs-6BmJRZsfb9scss\"}", "otherMails":[ - "{\"scope\":\"email\",\"domain\":\"gmail.com\",\"hash\":\"DE__fI7lKDU-e4_ZTA7yZpj7Vu5cQ7jQbQE9h8aU5zg\"}" + "{\"domain\":\"gmail.com\",\"hash\":\"DE__fI7lKDU-e4_ZTA7yZpj7Vu5cQ7jQbQE9h8aU5zg\"}" ], "proxyAddresses":[ "SMTP:t~80OuLKaSEacbENaFngf3v1Ul1rcs-6BmJRZsfb9scss@worklytics.onmicrosoft.com", @@ -19,41 +19,41 @@ { "id":"307ee26b-fe96-40a9-bc8a-9e49fba4de97", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"8ooPMu_uHiLVL-w_T7gTwJDA4S_ttDhB93_NhIXfkkE\"}", + "mail":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"8ooPMu_uHiLVL-w_T7gTwJDA4S_ttDhB93_NhIXfkkE\"}", "officeLocation":null, "preferredLanguage":null, - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"8ooPMu_uHiLVL-w_T7gTwJDA4S_ttDhB93_NhIXfkkE\"}" + "userPrincipalName":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"8ooPMu_uHiLVL-w_T7gTwJDA4S_ttDhB93_NhIXfkkE\"}" }, { "id":"4ea7fc01-0264-4e84-b85e-9e49fba4de97", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"QKF0JFDeWizMmaAamuk9jwtDKUqh_xFG4etyOOHcrEA\"}", + "mail":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"QKF0JFDeWizMmaAamuk9jwtDKUqh_xFG4etyOOHcrEA\"}", "officeLocation":null, "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"QKF0JFDeWizMmaAamuk9jwtDKUqh_xFG4etyOOHcrEA\"}" + "userPrincipalName":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"QKF0JFDeWizMmaAamuk9jwtDKUqh_xFG4etyOOHcrEA\"}" }, { "id":"219435cc-746e-48d6-8ccd-242345234f6e", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"_oJw-9fORXMFfHtwNXQ5xyTsva2CebpVGKae78dHEeQ\"}", + "mail":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"_oJw-9fORXMFfHtwNXQ5xyTsva2CebpVGKae78dHEeQ\"}", "officeLocation":null, "preferredLanguage":"es-ES", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"_oJw-9fORXMFfHtwNXQ5xyTsva2CebpVGKae78dHEeQ\"}" + "userPrincipalName":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"_oJw-9fORXMFfHtwNXQ5xyTsva2CebpVGKae78dHEeQ\"}" }, { "id":"f8f2864c-c353-4471-bd75-9e49fba4de97", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"98Qqjyepls36L4F39whrqv_YskOZCB71RNm8gO43sis\"}", + "mail":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"98Qqjyepls36L4F39whrqv_YskOZCB71RNm8gO43sis\"}", "officeLocation":null, "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"98Qqjyepls36L4F39whrqv_YskOZCB71RNm8gO43sis\"}" + "userPrincipalName":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"98Qqjyepls36L4F39whrqv_YskOZCB71RNm8gO43sis\"}" }, { "businessPhones":[ ], "mail":"null", "officeLocation":null, "preferredLanguage":null, - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"hLkozOrxrM9tHy-V5lXCNwhujad46BtuFl2uP-J7Dwk\"}", + "userPrincipalName":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"hLkozOrxrM9tHy-V5lXCNwhujad46BtuFl2uP-J7Dwk\"}", "id":"232442306-9942-4750-a708-4a1e4fe8a879" } ] diff --git a/docs/sources/microsoft-365/entra-id/example-api-responses/sanitized_no-app-ids/group-members.json b/docs/sources/microsoft-365/entra-id/example-api-responses/sanitized_no-app-ids/group-members.json index e8d97d824..c6fb0067a 100644 --- a/docs/sources/microsoft-365/entra-id/example-api-responses/sanitized_no-app-ids/group-members.json +++ b/docs/sources/microsoft-365/entra-id/example-api-responses/sanitized_no-app-ids/group-members.json @@ -3,174 +3,174 @@ "value":[ { "@odata.type":"#microsoft.graph.user", - "id":"{\"scope\":\"azure-ad\",\"hash\":\"GIahqS6f7LWgiuhAm2FdsUTe3olu5_uafg6X_8R1Xds\"}", + "id":"{\"hash\":\"GIahqS6f7LWgiuhAm2FdsUTe3olu5_uafg6X_8R1Xds\"}", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"1ZU-v2EwymdtJwCKzuncgUnOxX8V-MbE-FgKEvcj6J8\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"1ZU-v2EwymdtJwCKzuncgUnOxX8V-MbE-FgKEvcj6J8\"}", "officeLocation":"18/2111", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"1ZU-v2EwymdtJwCKzuncgUnOxX8V-MbE-FgKEvcj6J8\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"1ZU-v2EwymdtJwCKzuncgUnOxX8V-MbE-FgKEvcj6J8\"}" }, { "@odata.type":"#microsoft.graph.user", - "id":"{\"scope\":\"azure-ad\",\"hash\":\"cplqU6hWOUbCg3UfhVk2QABkcsecsN8KCVi4qnM4OlI\"}", + "id":"{\"hash\":\"cplqU6hWOUbCg3UfhVk2QABkcsecsN8KCVi4qnM4OlI\"}", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"KDHHtwETokpIrd-0CMxrNe2pku8bSufS9D5ZG5gdKrg\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"KDHHtwETokpIrd-0CMxrNe2pku8bSufS9D5ZG5gdKrg\"}", "officeLocation":"23/2102", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"KDHHtwETokpIrd-0CMxrNe2pku8bSufS9D5ZG5gdKrg\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"KDHHtwETokpIrd-0CMxrNe2pku8bSufS9D5ZG5gdKrg\"}" }, { "@odata.type":"#microsoft.graph.user", - "id":"{\"scope\":\"azure-ad\",\"hash\":\"IFewU17rYP9y7Dkh0bDVL8cMyWVpt-CTayNlHHKajcY\"}", + "id":"{\"hash\":\"IFewU17rYP9y7Dkh0bDVL8cMyWVpt-CTayNlHHKajcY\"}", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yXsuWvjfGM2Okdqi_8ytlEfiN7dNqY_IfJEyzEE9jWo\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yXsuWvjfGM2Okdqi_8ytlEfiN7dNqY_IfJEyzEE9jWo\"}", "officeLocation":"15/1102", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yXsuWvjfGM2Okdqi_8ytlEfiN7dNqY_IfJEyzEE9jWo\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yXsuWvjfGM2Okdqi_8ytlEfiN7dNqY_IfJEyzEE9jWo\"}" }, { "@odata.type":"#microsoft.graph.user", - "id":"{\"scope\":\"azure-ad\",\"hash\":\"QC-C6MuaU0214ZD6FERUEhBU0x0cg8f0cUfxo74Z7iY\"}", + "id":"{\"hash\":\"QC-C6MuaU0214ZD6FERUEhBU0x0cg8f0cUfxo74Z7iY\"}", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"ozJYl2KkP4ztQiof64QWgNtS5hx1czNS6pawH3v0AZw\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"ozJYl2KkP4ztQiof64QWgNtS5hx1czNS6pawH3v0AZw\"}", "officeLocation":"23/3101", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"ozJYl2KkP4ztQiof64QWgNtS5hx1czNS6pawH3v0AZw\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"ozJYl2KkP4ztQiof64QWgNtS5hx1czNS6pawH3v0AZw\"}" }, { "@odata.type":"#microsoft.graph.user", - "id":"{\"scope\":\"azure-ad\",\"hash\":\"hnJxHR_Zu53MxFq1gk9Ct2wFmBQyI6Axcc9h1GjGXO0\"}", + "id":"{\"hash\":\"hnJxHR_Zu53MxFq1gk9Ct2wFmBQyI6Axcc9h1GjGXO0\"}", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"MVn_bPW8RmDL-2W6UHPPtKjrI0KVxRk08ZNvfUOnSjg\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"MVn_bPW8RmDL-2W6UHPPtKjrI0KVxRk08ZNvfUOnSjg\"}", "officeLocation":"14/1102", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"MVn_bPW8RmDL-2W6UHPPtKjrI0KVxRk08ZNvfUOnSjg\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"MVn_bPW8RmDL-2W6UHPPtKjrI0KVxRk08ZNvfUOnSjg\"}" }, { "@odata.type":"#microsoft.graph.user", - "id":"{\"scope\":\"azure-ad\",\"hash\":\"3Nli-HcRM7g89KfEIAXOL-nxrnyZDsHg_sPwDza2om8\"}", + "id":"{\"hash\":\"3Nli-HcRM7g89KfEIAXOL-nxrnyZDsHg_sPwDza2om8\"}", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"DUyi5q8wChUJyCkMpodc7ASWD4pD-dW9GgQd6xLZQL4\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"DUyi5q8wChUJyCkMpodc7ASWD4pD-dW9GgQd6xLZQL4\"}", "officeLocation":"36/2121", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"DUyi5q8wChUJyCkMpodc7ASWD4pD-dW9GgQd6xLZQL4\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"DUyi5q8wChUJyCkMpodc7ASWD4pD-dW9GgQd6xLZQL4\"}" }, { "@odata.type":"#microsoft.graph.user", - "id":"{\"scope\":\"azure-ad\",\"hash\":\"_AEvyAEMlTxwyr6_9iAVIru2HY9kTaYx3NBKpPNKS4I\"}", + "id":"{\"hash\":\"_AEvyAEMlTxwyr6_9iAVIru2HY9kTaYx3NBKpPNKS4I\"}", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}", "officeLocation":"97/2302", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" }, { "@odata.type":"#microsoft.graph.user", - "id":"{\"scope\":\"azure-ad\",\"hash\":\"AIcnSwThMfVJG54wk-odWt5Tas8gt2A6kIxcfFKPzW4\"}", + "id":"{\"hash\":\"AIcnSwThMfVJG54wk-odWt5Tas8gt2A6kIxcfFKPzW4\"}", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xrI7EzSIq--CC6P9nUMgEfPMi4Op5rBR66-6nr1QwUI\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xrI7EzSIq--CC6P9nUMgEfPMi4Op5rBR66-6nr1QwUI\"}", "officeLocation":"131/2105", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xrI7EzSIq--CC6P9nUMgEfPMi4Op5rBR66-6nr1QwUI\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xrI7EzSIq--CC6P9nUMgEfPMi4Op5rBR66-6nr1QwUI\"}" }, { "@odata.type":"#microsoft.graph.user", - "id":"{\"scope\":\"azure-ad\",\"hash\":\"mtT2SNV67gswDrIF2dK_W9WhOVuQ9lloClrZceeRwlU\"}", + "id":"{\"hash\":\"mtT2SNV67gswDrIF2dK_W9WhOVuQ9lloClrZceeRwlU\"}", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yUp1exGSyddJ3c1HtMLtAg4YSVUlV3s5VSyz8iWgCiY\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yUp1exGSyddJ3c1HtMLtAg4YSVUlV3s5VSyz8iWgCiY\"}", "officeLocation":"20/1109", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yUp1exGSyddJ3c1HtMLtAg4YSVUlV3s5VSyz8iWgCiY\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yUp1exGSyddJ3c1HtMLtAg4YSVUlV3s5VSyz8iWgCiY\"}" }, { "@odata.type":"#microsoft.graph.user", - "id":"{\"scope\":\"azure-ad\",\"hash\":\"ZpIwxk2Kn6FA9HPiOwwGSaN1N4WSHdKljkFwaWNLzbI\"}", + "id":"{\"hash\":\"ZpIwxk2Kn6FA9HPiOwwGSaN1N4WSHdKljkFwaWNLzbI\"}", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"Obq2eJM8H6PaBmbsLgcx0lmrKetFS9OTpk2LuaA-goI\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"Obq2eJM8H6PaBmbsLgcx0lmrKetFS9OTpk2LuaA-goI\"}", "officeLocation":"131/1104", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"Obq2eJM8H6PaBmbsLgcx0lmrKetFS9OTpk2LuaA-goI\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"Obq2eJM8H6PaBmbsLgcx0lmrKetFS9OTpk2LuaA-goI\"}" }, { "@odata.type":"#microsoft.graph.user", - "id":"{\"scope\":\"azure-ad\",\"hash\":\"jQjKvY0jYpVpJCN9PnvDguGh5nRPZsqbneXXr74SGKs\"}", + "id":"{\"hash\":\"jQjKvY0jYpVpJCN9PnvDguGh5nRPZsqbneXXr74SGKs\"}", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"mMw0NyWtsdA7ZqfNWAc63W4_UOAAS9wxZZAEzIsOkAw\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"mMw0NyWtsdA7ZqfNWAc63W4_UOAAS9wxZZAEzIsOkAw\"}", "officeLocation":"131/2103", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"mMw0NyWtsdA7ZqfNWAc63W4_UOAAS9wxZZAEzIsOkAw\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"mMw0NyWtsdA7ZqfNWAc63W4_UOAAS9wxZZAEzIsOkAw\"}" }, { "@odata.type":"#microsoft.graph.user", - "id":"{\"scope\":\"azure-ad\",\"hash\":\"N46OA7d0UIy2Kgd1z81gfKancHTCCAlDmAo5TsUU4ZM\"}", + "id":"{\"hash\":\"N46OA7d0UIy2Kgd1z81gfKancHTCCAlDmAo5TsUU4ZM\"}", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"VzIqpdtScbANlMr2k0A3A2IqLLBFnoDu7gtw90wPEJc\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"VzIqpdtScbANlMr2k0A3A2IqLLBFnoDu7gtw90wPEJc\"}", "officeLocation":"14/1108", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"VzIqpdtScbANlMr2k0A3A2IqLLBFnoDu7gtw90wPEJc\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"VzIqpdtScbANlMr2k0A3A2IqLLBFnoDu7gtw90wPEJc\"}" }, { "@odata.type":"#microsoft.graph.user", - "id":"{\"scope\":\"azure-ad\",\"hash\":\"hRMaT4czSy_QaP1uk20pPT-mWZw2nDCPe00BSPTvC_M\"}", + "id":"{\"hash\":\"hRMaT4czSy_QaP1uk20pPT-mWZw2nDCPe00BSPTvC_M\"}", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"HRu855Q5bqB3kj1bf9LTO_ykCwHLiAklcYWUdvvIZU8\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"HRu855Q5bqB3kj1bf9LTO_ykCwHLiAklcYWUdvvIZU8\"}", "officeLocation":"20/2107", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"HRu855Q5bqB3kj1bf9LTO_ykCwHLiAklcYWUdvvIZU8\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"HRu855Q5bqB3kj1bf9LTO_ykCwHLiAklcYWUdvvIZU8\"}" }, { "@odata.type":"#microsoft.graph.user", - "id":"{\"scope\":\"azure-ad\",\"hash\":\"X9cdaHS5FbIXQstPZLKaKh6xp0WiHoIhfNsvb4r8cms\"}", + "id":"{\"hash\":\"X9cdaHS5FbIXQstPZLKaKh6xp0WiHoIhfNsvb4r8cms\"}", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"PS5V_GyzVyXk6jjkY-cKVd9UubD2yEntUABT3W6PyT0\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"PS5V_GyzVyXk6jjkY-cKVd9UubD2yEntUABT3W6PyT0\"}", "officeLocation":"19/2109", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"PS5V_GyzVyXk6jjkY-cKVd9UubD2yEntUABT3W6PyT0\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"PS5V_GyzVyXk6jjkY-cKVd9UubD2yEntUABT3W6PyT0\"}" }, { "@odata.type":"#microsoft.graph.user", - "id":"{\"scope\":\"azure-ad\",\"hash\":\"j1EdfIpu_era1uG9onG6DJxA_2ZMoQHkNWtA9Gr-aks\"}", + "id":"{\"hash\":\"j1EdfIpu_era1uG9onG6DJxA_2ZMoQHkNWtA9Gr-aks\"}", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"sQ8f9DihI2g9i17LxQ_GdZsNkUYpKp5A82AXup1YDwQ\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"sQ8f9DihI2g9i17LxQ_GdZsNkUYpKp5A82AXup1YDwQ\"}", "officeLocation":"98/2202", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"sQ8f9DihI2g9i17LxQ_GdZsNkUYpKp5A82AXup1YDwQ\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"sQ8f9DihI2g9i17LxQ_GdZsNkUYpKp5A82AXup1YDwQ\"}" }, { "@odata.type":"#microsoft.graph.user", - "id":"{\"scope\":\"azure-ad\",\"hash\":\"SIoJOpeSgYF7YUPQ28IWZexVuHyN9A80SJXrbfawKpA\"}", + "id":"{\"hash\":\"SIoJOpeSgYF7YUPQ28IWZexVuHyN9A80SJXrbfawKpA\"}", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}", "officeLocation":"12/1110", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" }, { "@odata.type":"#microsoft.graph.user", - "id":"{\"scope\":\"azure-ad\",\"hash\":\"8SUlSe462WgVOD2z7GSX7Sc7P_2sNVyHGDyjDRvtQUo\"}", + "id":"{\"hash\":\"8SUlSe462WgVOD2z7GSX7Sc7P_2sNVyHGDyjDRvtQUo\"}", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"35oOumhzn8j-tFjW0z9p4J4Qn1R7MNx-ueJ0l_nbl2Q\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"35oOumhzn8j-tFjW0z9p4J4Qn1R7MNx-ueJ0l_nbl2Q\"}", "officeLocation":"20/1104", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"35oOumhzn8j-tFjW0z9p4J4Qn1R7MNx-ueJ0l_nbl2Q\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"35oOumhzn8j-tFjW0z9p4J4Qn1R7MNx-ueJ0l_nbl2Q\"}" }, { "@odata.type":"#microsoft.graph.user", - "id":"{\"scope\":\"azure-ad\",\"hash\":\"XWT0ikgm6JrPXRckTOl6XJNvAgKXNqF02HBMGIjEkAA\"}", + "id":"{\"hash\":\"XWT0ikgm6JrPXRckTOl6XJNvAgKXNqF02HBMGIjEkAA\"}", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xzuczado8k_3rlH_zDVGqdQF2xvtCsyfe50ss4MR280\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xzuczado8k_3rlH_zDVGqdQF2xvtCsyfe50ss4MR280\"}", "officeLocation":"18/1106", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xzuczado8k_3rlH_zDVGqdQF2xvtCsyfe50ss4MR280\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xzuczado8k_3rlH_zDVGqdQF2xvtCsyfe50ss4MR280\"}" }, { "@odata.type":"#microsoft.graph.user", - "id":"{\"scope\":\"azure-ad\",\"hash\":\"4nCzUj3pqoVcGUgm-r1HzWo0PO51s2SSdrBrJlwSJck\"}", + "id":"{\"hash\":\"4nCzUj3pqoVcGUgm-r1HzWo0PO51s2SSdrBrJlwSJck\"}", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}", "officeLocation":"20/1101", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" } ] } diff --git a/docs/sources/microsoft-365/entra-id/example-api-responses/sanitized_no-app-ids/user.json b/docs/sources/microsoft-365/entra-id/example-api-responses/sanitized_no-app-ids/user.json index 4dbf835ce..299e02a41 100644 --- a/docs/sources/microsoft-365/entra-id/example-api-responses/sanitized_no-app-ids/user.json +++ b/docs/sources/microsoft-365/entra-id/example-api-responses/sanitized_no-app-ids/user.json @@ -1,13 +1,13 @@ { "@odata.context":"https://graph.microsoft.com/v1.0/$metadata#users/$entity", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}", + "mail":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}", "officeLocation":"12/1110", "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}", + "userPrincipalName":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}", "id":"p~SIoJOpeSgYF7YUPQ28IWZexVuHyN9A80SJXrbfawKpDRcddGnKI4QDKyjQI9KtjJZDb8FZ27UE_toS68FyWz7Y22fnQYLP91SHJGVwQiN3E", "otherMails":[ - "{\"scope\":\"email\",\"domain\":\"gmail.com\",\"hash\":\"9hOtJuGJwqk4-lnsJ2csmTnmD9R_Y28iXox85gjemWU\"}" + "{\"domain\":\"gmail.com\",\"hash\":\"9hOtJuGJwqk4-lnsJ2csmTnmD9R_Y28iXox85gjemWU\"}" ], "proxyAddresses":[ "SMTP:t~aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg@M365x214355.onmicrosoft.com", diff --git a/docs/sources/microsoft-365/entra-id/example-api-responses/sanitized_no-app-ids/users.json b/docs/sources/microsoft-365/entra-id/example-api-responses/sanitized_no-app-ids/users.json index 19778cfab..0b844202d 100644 --- a/docs/sources/microsoft-365/entra-id/example-api-responses/sanitized_no-app-ids/users.json +++ b/docs/sources/microsoft-365/entra-id/example-api-responses/sanitized_no-app-ids/users.json @@ -4,12 +4,12 @@ { "id":"p~bFDzUA6DcTb6Jc4bDJ4UDkZwq_lK0Ob5TJA0h6E_6UmQ_EQgmQCK_TdrApUV5q-PZaA9i28Oitm-X6bYa8iwQSNV1qzposKfzSfm7JN860o", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"80OuLKaSEacbENaFngf3v1Ul1rcs-6BmJRZsfb9scss\"}", + "mail":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"80OuLKaSEacbENaFngf3v1Ul1rcs-6BmJRZsfb9scss\"}", "officeLocation":null, "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"80OuLKaSEacbENaFngf3v1Ul1rcs-6BmJRZsfb9scss\"}", + "userPrincipalName":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"80OuLKaSEacbENaFngf3v1Ul1rcs-6BmJRZsfb9scss\"}", "otherMails":[ - "{\"scope\":\"email\",\"domain\":\"gmail.com\",\"hash\":\"DE__fI7lKDU-e4_ZTA7yZpj7Vu5cQ7jQbQE9h8aU5zg\"}" + "{\"domain\":\"gmail.com\",\"hash\":\"DE__fI7lKDU-e4_ZTA7yZpj7Vu5cQ7jQbQE9h8aU5zg\"}" ], "proxyAddresses":[ "SMTP:t~80OuLKaSEacbENaFngf3v1Ul1rcs-6BmJRZsfb9scss@worklytics.onmicrosoft.com", @@ -19,41 +19,41 @@ { "id":"p~olwC_FZa24BttFSG87T2U-fJybmzdHj6SMc7LxV4zOm0oLvgEDHxSVdAUvflsZfNPyGZt4MDy8hyxOZP9VHyJpfDnlVva0m1ElQ-WrRUjxM", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"8ooPMu_uHiLVL-w_T7gTwJDA4S_ttDhB93_NhIXfkkE\"}", + "mail":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"8ooPMu_uHiLVL-w_T7gTwJDA4S_ttDhB93_NhIXfkkE\"}", "officeLocation":null, "preferredLanguage":null, - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"8ooPMu_uHiLVL-w_T7gTwJDA4S_ttDhB93_NhIXfkkE\"}" + "userPrincipalName":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"8ooPMu_uHiLVL-w_T7gTwJDA4S_ttDhB93_NhIXfkkE\"}" }, { "id":"p~CBRYQdohf24wt2ERzO_2CUZ1D7HWgla01CtX9RnFgko9_YX4INCm3pJZDkOYr_wJHHXNWuFYA5yKMQ0GOunQ_yECslrs_0kt_P_0uAUlKes", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"QKF0JFDeWizMmaAamuk9jwtDKUqh_xFG4etyOOHcrEA\"}", + "mail":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"QKF0JFDeWizMmaAamuk9jwtDKUqh_xFG4etyOOHcrEA\"}", "officeLocation":null, "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"QKF0JFDeWizMmaAamuk9jwtDKUqh_xFG4etyOOHcrEA\"}" + "userPrincipalName":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"QKF0JFDeWizMmaAamuk9jwtDKUqh_xFG4etyOOHcrEA\"}" }, { "id":"p~11O1eqpq2vEzigY-HlCb5svil7cXxmuDhaMTaj86mLDZA43zB4KsiYB6d56uPZYidcBB96tOU2AfhbhLQbbhqAvLsaPaOgMj64f71eMQHc0", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"_oJw-9fORXMFfHtwNXQ5xyTsva2CebpVGKae78dHEeQ\"}", + "mail":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"_oJw-9fORXMFfHtwNXQ5xyTsva2CebpVGKae78dHEeQ\"}", "officeLocation":null, "preferredLanguage":"es-ES", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"_oJw-9fORXMFfHtwNXQ5xyTsva2CebpVGKae78dHEeQ\"}" + "userPrincipalName":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"_oJw-9fORXMFfHtwNXQ5xyTsva2CebpVGKae78dHEeQ\"}" }, { "id":"p~kOTAg44Qv8HSvYWG7niJEq_fPTSFm1vHKYfVhmrS221C1HOmCt8kkL376bc8842blh7-oAvtkYr2dK5dFhDDaMs_TWiVje9MvvyyZE6JI7E", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"98Qqjyepls36L4F39whrqv_YskOZCB71RNm8gO43sis\"}", + "mail":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"98Qqjyepls36L4F39whrqv_YskOZCB71RNm8gO43sis\"}", "officeLocation":null, "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"98Qqjyepls36L4F39whrqv_YskOZCB71RNm8gO43sis\"}" + "userPrincipalName":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"98Qqjyepls36L4F39whrqv_YskOZCB71RNm8gO43sis\"}" }, { "businessPhones":[ ], "mail":"null", "officeLocation":null, "preferredLanguage":null, - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"hLkozOrxrM9tHy-V5lXCNwhujad46BtuFl2uP-J7Dwk\"}", + "userPrincipalName":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"hLkozOrxrM9tHy-V5lXCNwhujad46BtuFl2uP-J7Dwk\"}", "id":"p~xU2vGhAEBHegciOlP1Oz2bRY1_OkAY-GO2VY7FGQU5tc-5pDPeQYr4dh1Xrkbl1dmx1pyWCN8R3C-tWSXv_7DNDELLFYYHtX6FiIDjdLDaw" } ] diff --git a/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized/Users_onlineMeetings_attendanceReport_v1.0.json b/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized/Users_onlineMeetings_attendanceReport_v1.0.json index 794897e6b..1d4753399 100644 --- a/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized/Users_onlineMeetings_attendanceReport_v1.0.json +++ b/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized/Users_onlineMeetings_attendanceReport_v1.0.json @@ -5,7 +5,7 @@ "meetingEndDateTime":"2021-10-05T04:43:49.77Z", "attendanceRecords":[ { - "emailAddress":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"vmFS5ryxySBiEUyJMW5ZaT6Om1EFFke7j1Srx0mZAxs\"}", + "emailAddress":"{\"domain\":\"contoso.com\",\"hash\":\"vmFS5ryxySBiEUyJMW5ZaT6Om1EFFke7j1Srx0mZAxs\"}", "totalAttendanceInSeconds":1152, "role":"Presenter", "identity":{ @@ -31,4 +31,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized/Users_v1.0.json b/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized/Users_v1.0.json index af6444d63..e8af8c585 100644 --- a/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized/Users_v1.0.json +++ b/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized/Users_v1.0.json @@ -4,12 +4,12 @@ { "id":"cdfb873d-61f9-4656-bbbb-9e49fba4de97", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"80OuLKaSEacbENaFngf3v1Ul1rcs-6BmJRZsfb9scss\"}", + "mail":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"80OuLKaSEacbENaFngf3v1Ul1rcs-6BmJRZsfb9scss\"}", "officeLocation":null, "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"80OuLKaSEacbENaFngf3v1Ul1rcs-6BmJRZsfb9scss\"}", + "userPrincipalName":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"80OuLKaSEacbENaFngf3v1Ul1rcs-6BmJRZsfb9scss\"}", "otherMails":[ - "{\"scope\":\"email\",\"domain\":\"gmail.com\",\"hash\":\"DE__fI7lKDU-e4_ZTA7yZpj7Vu5cQ7jQbQE9h8aU5zg\"}" + "{\"domain\":\"gmail.com\",\"hash\":\"DE__fI7lKDU-e4_ZTA7yZpj7Vu5cQ7jQbQE9h8aU5zg\"}" ], "proxyAddresses":[ "SMTP:t~80OuLKaSEacbENaFngf3v1Ul1rcs-6BmJRZsfb9scss@worklytics.onmicrosoft.com", @@ -19,41 +19,41 @@ { "id":"307ee26b-fe96-40a9-bc8a-9e49fba4de97", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"8ooPMu_uHiLVL-w_T7gTwJDA4S_ttDhB93_NhIXfkkE\"}", + "mail":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"8ooPMu_uHiLVL-w_T7gTwJDA4S_ttDhB93_NhIXfkkE\"}", "officeLocation":null, "preferredLanguage":null, - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"8ooPMu_uHiLVL-w_T7gTwJDA4S_ttDhB93_NhIXfkkE\"}" + "userPrincipalName":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"8ooPMu_uHiLVL-w_T7gTwJDA4S_ttDhB93_NhIXfkkE\"}" }, { "id":"4ea7fc01-0264-4e84-b85e-9e49fba4de97", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"QKF0JFDeWizMmaAamuk9jwtDKUqh_xFG4etyOOHcrEA\"}", + "mail":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"QKF0JFDeWizMmaAamuk9jwtDKUqh_xFG4etyOOHcrEA\"}", "officeLocation":null, "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"QKF0JFDeWizMmaAamuk9jwtDKUqh_xFG4etyOOHcrEA\"}" + "userPrincipalName":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"QKF0JFDeWizMmaAamuk9jwtDKUqh_xFG4etyOOHcrEA\"}" }, { "id":"219435cc-746e-48d6-8ccd-242345234f6e", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"_oJw-9fORXMFfHtwNXQ5xyTsva2CebpVGKae78dHEeQ\"}", + "mail":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"_oJw-9fORXMFfHtwNXQ5xyTsva2CebpVGKae78dHEeQ\"}", "officeLocation":null, "preferredLanguage":"es-ES", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"_oJw-9fORXMFfHtwNXQ5xyTsva2CebpVGKae78dHEeQ\"}" + "userPrincipalName":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"_oJw-9fORXMFfHtwNXQ5xyTsva2CebpVGKae78dHEeQ\"}" }, { "id":"f8f2864c-c353-4471-bd75-9e49fba4de97", "businessPhones":[ ], - "mail":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"98Qqjyepls36L4F39whrqv_YskOZCB71RNm8gO43sis\"}", + "mail":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"98Qqjyepls36L4F39whrqv_YskOZCB71RNm8gO43sis\"}", "officeLocation":null, "preferredLanguage":"en-US", - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"98Qqjyepls36L4F39whrqv_YskOZCB71RNm8gO43sis\"}" + "userPrincipalName":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"98Qqjyepls36L4F39whrqv_YskOZCB71RNm8gO43sis\"}" }, { "businessPhones":[ ], "mail":"null", "officeLocation":null, "preferredLanguage":null, - "userPrincipalName":"{\"scope\":\"email\",\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"hLkozOrxrM9tHy-V5lXCNwhujad46BtuFl2uP-J7Dwk\"}", + "userPrincipalName":"{\"domain\":\"worklytics.onmicrosoft.com\",\"hash\":\"hLkozOrxrM9tHy-V5lXCNwhujad46BtuFl2uP-J7Dwk\"}", "id":"232442306-9942-4750-a708-4a1e4fe8a879" } ] diff --git a/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Chats_messages_v1.0.json b/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Chats_messages_v1.0.json index 36d5fef81..f61d0e93d 100644 --- a/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Chats_messages_v1.0.json +++ b/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Chats_messages_v1.0.json @@ -23,7 +23,7 @@ "application":null, "device":null, "user":{ - "id":"{\"scope\":\"azure-ad\",\"hash\":\"B9mIayvpLlXmJS0UFmhvp06dDj9WoxgJ9Dc7zS9Dc90\"}", + "id":"{\"hash\":\"B9mIayvpLlXmJS0UFmhvp06dDj9WoxgJ9Dc7zS9Dc90\"}", "userIdentityType":"aadUser" } }, @@ -56,7 +56,7 @@ "application":null, "device":null, "user":{ - "id":"{\"scope\":\"azure-ad\",\"hash\":\"B9mIayvpLlXmJS0UFmhvp06dDj9WoxgJ9Dc7zS9Dc90\"}", + "id":"{\"hash\":\"B9mIayvpLlXmJS0UFmhvp06dDj9WoxgJ9Dc7zS9Dc90\"}", "userIdentityType":"aadUser" } }, @@ -98,11 +98,11 @@ "application":null, "device":null, "user":{ - "id":"{\"scope\":\"azure-ad\",\"hash\":\"_f_lwH_zqYVtech_dnZSTmXzYq4pDo8vsGQ51YNjrY4\"}", + "id":"{\"hash\":\"_f_lwH_zqYVtech_dnZSTmXzYq4pDo8vsGQ51YNjrY4\"}", "userIdentityType":"aadUser" } } } } ] -} \ No newline at end of file +} diff --git a/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Communications_callRecord_v1.0.json b/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Communications_callRecord_v1.0.json index 02195b919..bc65509ff 100644 --- a/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Communications_callRecord_v1.0.json +++ b/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Communications_callRecord_v1.0.json @@ -10,20 +10,20 @@ "id":"e523d2ed-2966-4b6b-925b-754a88034cc5", "organizer":{ "user":{ - "id":"{\"scope\":\"azure-ad\",\"hash\":\"_NMipkQ9Oebtrm7A33WQtT_wp1HCdXFRkhibMxTZGpU\"}", + "id":"{\"hash\":\"_NMipkQ9Oebtrm7A33WQtT_wp1HCdXFRkhibMxTZGpU\"}", "tenantId":"dc368399-474c-4d40-900c-6265431fd81f" } }, "participants":[ { "user":{ - "id":"{\"scope\":\"azure-ad\",\"hash\":\"_NMipkQ9Oebtrm7A33WQtT_wp1HCdXFRkhibMxTZGpU\"}", + "id":"{\"hash\":\"_NMipkQ9Oebtrm7A33WQtT_wp1HCdXFRkhibMxTZGpU\"}", "tenantId":"dc368399-474c-4d40-900c-6265431fd81f" } }, { "user":{ - "id":"{\"scope\":\"azure-ad\",\"hash\":\"ejSHHUaRnhvrRPBjmJAxSudeydUkOaOBffHT-nIS1s0\"}", + "id":"{\"hash\":\"ejSHHUaRnhvrRPBjmJAxSudeydUkOaOBffHT-nIS1s0\"}", "tenantId":"dc368399-474c-4d40-900c-6265431fd81f" } } @@ -48,7 +48,7 @@ }, "identity":{ "user":{ - "id":"{\"scope\":\"azure-ad\",\"hash\":\"_NMipkQ9Oebtrm7A33WQtT_wp1HCdXFRkhibMxTZGpU\"}", + "id":"{\"hash\":\"_NMipkQ9Oebtrm7A33WQtT_wp1HCdXFRkhibMxTZGpU\"}", "tenantId":"dc368399-474c-4d40-900c-6265431fd81f" } } @@ -64,7 +64,7 @@ }, "identity":{ "user":{ - "id":"{\"scope\":\"azure-ad\",\"hash\":\"ejSHHUaRnhvrRPBjmJAxSudeydUkOaOBffHT-nIS1s0\"}", + "id":"{\"hash\":\"ejSHHUaRnhvrRPBjmJAxSudeydUkOaOBffHT-nIS1s0\"}", "tenantId":"dc368399-474c-4d40-900c-6265431fd81f" } }, @@ -98,7 +98,7 @@ }, "identity":{ "user":{ - "id":"{\"scope\":\"azure-ad\",\"hash\":\"_NMipkQ9Oebtrm7A33WQtT_wp1HCdXFRkhibMxTZGpU\"}", + "id":"{\"hash\":\"_NMipkQ9Oebtrm7A33WQtT_wp1HCdXFRkhibMxTZGpU\"}", "tenantId":"dc368399-474c-4d40-900c-6265431fd81f" } } @@ -114,7 +114,7 @@ }, "identity":{ "user":{ - "id":"{\"scope\":\"azure-ad\",\"hash\":\"ejSHHUaRnhvrRPBjmJAxSudeydUkOaOBffHT-nIS1s0\"}", + "id":"{\"hash\":\"ejSHHUaRnhvrRPBjmJAxSudeydUkOaOBffHT-nIS1s0\"}", "tenantId":"dc368399-474c-4d40-900c-6265431fd81f" } } @@ -213,4 +213,4 @@ } ], "sessions@odata.nextLink":"https://graph.microsoft.com/v1.0/$metadata#communications/callRecords('e523d2ed-2966-4b6b-925b-754a88034cc5')/sessions?$expand=segments&$skiptoken=abc" -} \ No newline at end of file +} diff --git a/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Communications_callRecords_getDirectRoutingCalls_v1.0.json b/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Communications_callRecords_getDirectRoutingCalls_v1.0.json index 16934733f..19a5eb07a 100644 --- a/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Communications_callRecords_getDirectRoutingCalls_v1.0.json +++ b/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Communications_callRecords_getDirectRoutingCalls_v1.0.json @@ -3,7 +3,7 @@ { "id":"9e8bba57-dc14-533a-a7dd-f0da6575eed1", "correlationId":"c98e1515-a937-4b81-b8a8-3992afde64e0", - "userId":"{\"scope\":\"azure-ad\",\"hash\":\"2ZGitAxyjkjPJ6l2GfLqf2kr0xFtleWfl5XA_zNbtMA\"}", + "userId":"{\"hash\":\"2ZGitAxyjkjPJ6l2GfLqf2kr0xFtleWfl5XA_zNbtMA\"}", "startDateTime":"2019-11-01T00:00:25.105Z", "inviteDateTime":"2019-11-01T00:00:21.949Z", "failureDateTime":"0001-01-01T00:00:00Z", @@ -21,4 +21,4 @@ } ], "@odata.nextLink":"https://graph.microsoft.com/v1.0/communications/callRecords/getDirectRoutingCalls(fromDateTime=2019-11-01,toDateTime=2019-12-01)?$skip=1000" -} \ No newline at end of file +} diff --git a/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Communications_callRecords_getPstnCalls_v1.0.json b/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Communications_callRecords_getPstnCalls_v1.0.json index 7bffcdb63..c33c6263a 100644 --- a/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Communications_callRecords_getPstnCalls_v1.0.json +++ b/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Communications_callRecords_getPstnCalls_v1.0.json @@ -3,7 +3,7 @@ { "id":"9c4984c7-6c3c-427d-a30c-bd0b2eacee90", "callId":"p~Bvc4jV4RzsaEt4XIerSH40pfOsnpmsA1SuHUaIQ__1rmJYqLjsX9x4FjOXqaJLWshHPYWjB_xi0zPWc-9r6F_Nv5l7DJWsgKi0Kjd3k8hfU", - "userId":"{\"scope\":\"azure-ad\",\"hash\":\"2ZGitAxyjkjPJ6l2GfLqf2kr0xFtleWfl5XA_zNbtMA\"}", + "userId":"{\"hash\":\"2ZGitAxyjkjPJ6l2GfLqf2kr0xFtleWfl5XA_zNbtMA\"}", "startDateTime":"2019-11-01T00:00:08.2589935Z", "endDateTime":"2019-11-01T00:03:47.2589935Z", "duration":219, @@ -23,4 +23,4 @@ } ], "@odata.nextLink":"https://graph.microsoft.com/v1.0/communications/callRecords/getPstnCalls(from=2019-11-01,to=2019-12-01)?$skip=1000" -} \ No newline at end of file +} diff --git a/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Communications_callRecords_v1.0.json b/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Communications_callRecords_v1.0.json index b0783d549..27b7162dd 100644 --- a/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Communications_callRecords_v1.0.json +++ b/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Communications_callRecords_v1.0.json @@ -12,14 +12,14 @@ "endDateTime":"2023-09-25T09:28:41Z", "organizer":{ "user":{ - "id":"{\"scope\":\"azure-ad\",\"hash\":\"_NMipkQ9Oebtrm7A33WQtT_wp1HCdXFRkhibMxTZGpU\"}", + "id":"{\"hash\":\"_NMipkQ9Oebtrm7A33WQtT_wp1HCdXFRkhibMxTZGpU\"}", "tenantId":"dc368399-474c-4d40-900c-6265431fd81f" } }, "organizer_v2":{ "identity":{ "user":{ - "id":"{\"scope\":\"azure-ad\",\"hash\":\"_NMipkQ9Oebtrm7A33WQtT_wp1HCdXFRkhibMxTZGpU\"}", + "id":"{\"hash\":\"_NMipkQ9Oebtrm7A33WQtT_wp1HCdXFRkhibMxTZGpU\"}", "tenantId":"dc368399-474c-4d40-900c-6265431fd81f" } } @@ -37,7 +37,7 @@ "endDateTime":"2023-09-25T14:03:40Z", "organizer":{ "user":{ - "id":"{\"scope\":\"azure-ad\",\"hash\":\"_NMipkQ9Oebtrm7A33WQtT_wp1HCdXFRkhibMxTZGpU\"}", + "id":"{\"hash\":\"_NMipkQ9Oebtrm7A33WQtT_wp1HCdXFRkhibMxTZGpU\"}", "tenantId":"dc368399-474c-4d40-900c-6265431fd81f" } }, @@ -50,4 +50,4 @@ } } ] -} \ No newline at end of file +} diff --git a/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Communications_calls_v1.0.json b/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Communications_calls_v1.0.json index b7865b531..0ee6002fd 100644 --- a/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Communications_calls_v1.0.json +++ b/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Communications_calls_v1.0.json @@ -15,7 +15,7 @@ { "identity":{ "user":{ - "id":"{\"scope\":\"azure-ad\",\"hash\":\"P41Oxrvl5S1iYa03X7oD75Xn-UzD1ma7OIa4rUs_ZoM\"}" + "id":"{\"hash\":\"P41Oxrvl5S1iYa03X7oD75Xn-UzD1ma7OIa4rUs_ZoM\"}" } } } diff --git a/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Teams_channels_messages_delta_v1.0.json b/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Teams_channels_messages_delta_v1.0.json index 5c1105d91..d93dbe18b 100644 --- a/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Teams_channels_messages_delta_v1.0.json +++ b/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Teams_channels_messages_delta_v1.0.json @@ -25,7 +25,7 @@ "conversation":null, "user":{ "@odata.type":"#microsoft.graph.teamworkUserIdentity", - "id":"{\"scope\":\"azure-ad\",\"hash\":\"B9mIayvpLlXmJS0UFmhvp06dDj9WoxgJ9Dc7zS9Dc90\"}", + "id":"{\"hash\":\"B9mIayvpLlXmJS0UFmhvp06dDj9WoxgJ9Dc7zS9Dc90\"}", "userIdentityType":"aadUser", "tenantId":"e61ef81e-8bd8-476a-92e8-4a62f8426fca" } @@ -65,7 +65,7 @@ "conversation":null, "user":{ "@odata.type":"#microsoft.graph.teamworkUserIdentity", - "id":"{\"scope\":\"azure-ad\",\"hash\":\"B9mIayvpLlXmJS0UFmhvp06dDj9WoxgJ9Dc7zS9Dc90\"}", + "id":"{\"hash\":\"B9mIayvpLlXmJS0UFmhvp06dDj9WoxgJ9Dc7zS9Dc90\"}", "userIdentityType":"aadUser", "tenantId":"e61ef81e-8bd8-476a-92e8-4a62f8426fca" } @@ -82,4 +82,4 @@ "messageHistory":[ ] } ] -} \ No newline at end of file +} diff --git a/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Teams_channels_messages_v1.0.json b/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Teams_channels_messages_v1.0.json index 8b57b49ff..32bed50c4 100644 --- a/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Teams_channels_messages_v1.0.json +++ b/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Teams_channels_messages_v1.0.json @@ -22,7 +22,7 @@ "application":null, "device":null, "user":{ - "id":"{\"scope\":\"azure-ad\",\"hash\":\"B9mIayvpLlXmJS0UFmhvp06dDj9WoxgJ9Dc7zS9Dc90\"}", + "id":"{\"hash\":\"B9mIayvpLlXmJS0UFmhvp06dDj9WoxgJ9Dc7zS9Dc90\"}", "userIdentityType":"aadUser" } }, @@ -41,7 +41,7 @@ "device":null, "conversation":null, "user":{ - "id":"{\"scope\":\"azure-ad\",\"hash\":\"O4RUPftFsIOsLe5u9m_TNdrNkrJvuUuHCdgafxMyo74\"}", + "id":"{\"hash\":\"O4RUPftFsIOsLe5u9m_TNdrNkrJvuUuHCdgafxMyo74\"}", "userIdentityType":"aadUser" } } @@ -71,7 +71,7 @@ "application":null, "device":null, "user":{ - "id":"{\"scope\":\"azure-ad\",\"hash\":\"B9mIayvpLlXmJS0UFmhvp06dDj9WoxgJ9Dc7zS9Dc90\"}", + "id":"{\"hash\":\"B9mIayvpLlXmJS0UFmhvp06dDj9WoxgJ9Dc7zS9Dc90\"}", "userIdentityType":"aadUser" } }, @@ -120,11 +120,11 @@ "application":null, "device":null, "user":{ - "id":"{\"scope\":\"azure-ad\",\"hash\":\"_f_lwH_zqYVtech_dnZSTmXzYq4pDo8vsGQ51YNjrY4\"}", + "id":"{\"hash\":\"_f_lwH_zqYVtech_dnZSTmXzYq4pDo8vsGQ51YNjrY4\"}", "userIdentityType":"aadUser" } } } } ] -} \ No newline at end of file +} diff --git a/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Users_onlineMeetings_attendanceReport_v1.0.json b/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Users_onlineMeetings_attendanceReport_v1.0.json index 794897e6b..1d4753399 100644 --- a/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Users_onlineMeetings_attendanceReport_v1.0.json +++ b/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Users_onlineMeetings_attendanceReport_v1.0.json @@ -5,7 +5,7 @@ "meetingEndDateTime":"2021-10-05T04:43:49.77Z", "attendanceRecords":[ { - "emailAddress":"{\"scope\":\"email\",\"domain\":\"contoso.com\",\"hash\":\"vmFS5ryxySBiEUyJMW5ZaT6Om1EFFke7j1Srx0mZAxs\"}", + "emailAddress":"{\"domain\":\"contoso.com\",\"hash\":\"vmFS5ryxySBiEUyJMW5ZaT6Om1EFFke7j1Srx0mZAxs\"}", "totalAttendanceInSeconds":1152, "role":"Presenter", "identity":{ @@ -31,4 +31,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Users_onlineMeetings_v1.0.json b/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Users_onlineMeetings_v1.0.json index 7312202ad..633ddb900 100644 --- a/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Users_onlineMeetings_v1.0.json +++ b/docs/sources/microsoft-365/msft-teams/example-api-responses/sanitized_no-userIds/Users_onlineMeetings_v1.0.json @@ -19,7 +19,7 @@ { "identity":{ "user":{ - "id":"{\"scope\":\"azure-ad\",\"hash\":\"KvrBhIhPrAEMwI320CqhyGSfgVmKedObWZ5X380uX04\"}" + "id":"{\"hash\":\"KvrBhIhPrAEMwI320CqhyGSfgVmKedObWZ5X380uX04\"}" } }, "upn":"upn-value" @@ -28,7 +28,7 @@ "organizer":{ "identity":{ "user":{ - "id":"{\"scope\":\"azure-ad\",\"hash\":\"OkGYJKhA8lYaD0IJw3YHj8cB9qiSMw6MA_70P99wa3o\"}" + "id":"{\"hash\":\"OkGYJKhA8lYaD0IJw3YHj8cB9qiSMw6MA_70P99wa3o\"}" } }, "upn":"upn-value" diff --git a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized/CalendarEvents_v1.0.json b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized/CalendarEvents_v1.0.json index 6b80512dd..2fe7b2bff 100644 --- a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized/CalendarEvents_v1.0.json +++ b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized/CalendarEvents_v1.0.json @@ -89,7 +89,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, { @@ -99,13 +99,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, "onlineMeeting":null, @@ -199,7 +199,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, { @@ -209,13 +209,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"2qG34d490QQJTjBKCcjDhEDjZbFtjqqqe3JDJxlc1GA\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"2qG34d490QQJTjBKCcjDhEDjZbFtjqqqe3JDJxlc1GA\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, "onlineMeeting":null, @@ -309,7 +309,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, { @@ -319,13 +319,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"ozJYl2KkP4ztQiof64QWgNtS5hx1czNS6pawH3v0AZw\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"ozJYl2KkP4ztQiof64QWgNtS5hx1czNS6pawH3v0AZw\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, "onlineMeeting":null, @@ -419,7 +419,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -429,13 +429,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"35oOumhzn8j-tFjW0z9p4J4Qn1R7MNx-ueJ0l_nbl2Q\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"35oOumhzn8j-tFjW0z9p4J4Qn1R7MNx-ueJ0l_nbl2Q\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null, @@ -529,7 +529,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -539,13 +539,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null, @@ -639,7 +639,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -649,13 +649,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null, @@ -749,7 +749,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -759,13 +759,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"KDHHtwETokpIrd-0CMxrNe2pku8bSufS9D5ZG5gdKrg\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"KDHHtwETokpIrd-0CMxrNe2pku8bSufS9D5ZG5gdKrg\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null, @@ -859,7 +859,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -869,13 +869,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null, @@ -969,7 +969,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" } }, { @@ -979,7 +979,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xzuczado8k_3rlH_zDVGqdQF2xvtCsyfe50ss4MR280\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xzuczado8k_3rlH_zDVGqdQF2xvtCsyfe50ss4MR280\"}" } }, { @@ -989,7 +989,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"HRu855Q5bqB3kj1bf9LTO_ykCwHLiAklcYWUdvvIZU8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"HRu855Q5bqB3kj1bf9LTO_ykCwHLiAklcYWUdvvIZU8\"}" } }, { @@ -999,13 +999,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" } }, "onlineMeeting":null, @@ -1099,7 +1099,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" } }, { @@ -1109,7 +1109,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yXsuWvjfGM2Okdqi_8ytlEfiN7dNqY_IfJEyzEE9jWo\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yXsuWvjfGM2Okdqi_8ytlEfiN7dNqY_IfJEyzEE9jWo\"}" } }, { @@ -1119,7 +1119,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"PS5V_GyzVyXk6jjkY-cKVd9UubD2yEntUABT3W6PyT0\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"PS5V_GyzVyXk6jjkY-cKVd9UubD2yEntUABT3W6PyT0\"}" } }, { @@ -1129,13 +1129,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" } }, "onlineMeeting":null, diff --git a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized/CalendarView_v1.0.json b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized/CalendarView_v1.0.json index b275bc106..b77ca617e 100644 --- a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized/CalendarView_v1.0.json +++ b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized/CalendarView_v1.0.json @@ -69,7 +69,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, { @@ -79,13 +79,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, "onlineMeeting":null diff --git a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized/CalendarView_v1.0_wOnlineMeetings.json b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized/CalendarView_v1.0_wOnlineMeetings.json index b55d18688..f0d9773b8 100644 --- a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized/CalendarView_v1.0_wOnlineMeetings.json +++ b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized/CalendarView_v1.0_wOnlineMeetings.json @@ -69,13 +69,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"azure-ad\",\"hash\":\"Kshk8GObYWiFkaMaAioYqdhQKjXdMgx6RhdrNGkgMLs\"}" + "address":"{\"hash\":\"Kshk8GObYWiFkaMaAioYqdhQKjXdMgx6RhdrNGkgMLs\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"azure-ad\",\"hash\":\"kCA4MOkfvB_IwP_zwJlJRXMUW0lcMbzxOk_lt6fLsik\"}" + "address":"{\"hash\":\"kCA4MOkfvB_IwP_zwJlJRXMUW0lcMbzxOk_lt6fLsik\"}" } }, "onlineMeeting":{ @@ -151,7 +151,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"azure-ad\",\"hash\":\"CUARac-vheJg290qudQM5oFzsQx4arPOS4nfy5dpoNc\"}" + "address":"{\"hash\":\"CUARac-vheJg290qudQM5oFzsQx4arPOS4nfy5dpoNc\"}" } }, { @@ -161,13 +161,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"azure-ad\",\"hash\":\"kCA4MOkfvB_IwP_zwJlJRXMUW0lcMbzxOk_lt6fLsik\"}" + "address":"{\"hash\":\"kCA4MOkfvB_IwP_zwJlJRXMUW0lcMbzxOk_lt6fLsik\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"azure-ad\",\"hash\":\"CUARac-vheJg290qudQM5oFzsQx4arPOS4nfy5dpoNc\"}" + "address":"{\"hash\":\"CUARac-vheJg290qudQM5oFzsQx4arPOS4nfy5dpoNc\"}" } }, "onlineMeeting":{ @@ -238,7 +238,7 @@ "attendees":[ ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"azure-ad\",\"hash\":\"kCA4MOkfvB_IwP_zwJlJRXMUW0lcMbzxOk_lt6fLsik\"}" + "address":"{\"hash\":\"kCA4MOkfvB_IwP_zwJlJRXMUW0lcMbzxOk_lt6fLsik\"}" } }, "onlineMeeting":{ diff --git a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized/CalendarView_v1.0_wZoomUrls.json b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized/CalendarView_v1.0_wZoomUrls.json index 6b4bdaf25..b84444183 100644 --- a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized/CalendarView_v1.0_wZoomUrls.json +++ b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized/CalendarView_v1.0_wZoomUrls.json @@ -70,7 +70,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, { @@ -80,13 +80,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, "onlineMeeting":{ diff --git a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized/Event_v1.0.json b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized/Event_v1.0.json index 6c24129c6..e7ec1ed28 100644 --- a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized/Event_v1.0.json +++ b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized/Event_v1.0.json @@ -87,7 +87,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, { @@ -97,13 +97,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, "onlineMeeting":null, diff --git a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized/Events_v1.0.json b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized/Events_v1.0.json index ef95797c0..f55b01f45 100644 --- a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized/Events_v1.0.json +++ b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized/Events_v1.0.json @@ -89,7 +89,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, { @@ -99,13 +99,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, "onlineMeeting":null, @@ -199,7 +199,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, { @@ -209,13 +209,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"2qG34d490QQJTjBKCcjDhEDjZbFtjqqqe3JDJxlc1GA\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"2qG34d490QQJTjBKCcjDhEDjZbFtjqqqe3JDJxlc1GA\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, "onlineMeeting":null, @@ -309,7 +309,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, { @@ -319,13 +319,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"ozJYl2KkP4ztQiof64QWgNtS5hx1czNS6pawH3v0AZw\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"ozJYl2KkP4ztQiof64QWgNtS5hx1czNS6pawH3v0AZw\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, "onlineMeeting":null, @@ -419,7 +419,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -429,13 +429,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"35oOumhzn8j-tFjW0z9p4J4Qn1R7MNx-ueJ0l_nbl2Q\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"35oOumhzn8j-tFjW0z9p4J4Qn1R7MNx-ueJ0l_nbl2Q\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null, @@ -529,7 +529,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -539,13 +539,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null, @@ -639,7 +639,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -649,13 +649,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null, @@ -749,7 +749,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -759,13 +759,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"KDHHtwETokpIrd-0CMxrNe2pku8bSufS9D5ZG5gdKrg\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"KDHHtwETokpIrd-0CMxrNe2pku8bSufS9D5ZG5gdKrg\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null, @@ -859,7 +859,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -869,13 +869,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null, @@ -969,7 +969,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" } }, { @@ -979,7 +979,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xzuczado8k_3rlH_zDVGqdQF2xvtCsyfe50ss4MR280\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xzuczado8k_3rlH_zDVGqdQF2xvtCsyfe50ss4MR280\"}" } }, { @@ -989,7 +989,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"HRu855Q5bqB3kj1bf9LTO_ykCwHLiAklcYWUdvvIZU8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"HRu855Q5bqB3kj1bf9LTO_ykCwHLiAklcYWUdvvIZU8\"}" } }, { @@ -999,13 +999,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" } }, "onlineMeeting":null, @@ -1099,7 +1099,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" } }, { @@ -1109,7 +1109,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yXsuWvjfGM2Okdqi_8ytlEfiN7dNqY_IfJEyzEE9jWo\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yXsuWvjfGM2Okdqi_8ytlEfiN7dNqY_IfJEyzEE9jWo\"}" } }, { @@ -1119,7 +1119,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"PS5V_GyzVyXk6jjkY-cKVd9UubD2yEntUABT3W6PyT0\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"PS5V_GyzVyXk6jjkY-cKVd9UubD2yEntUABT3W6PyT0\"}" } }, { @@ -1129,13 +1129,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" } }, "onlineMeeting":null, diff --git a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids/CalendarEvents_v1.0.json b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids/CalendarEvents_v1.0.json index 495ea0ad6..0941ca0f1 100644 --- a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids/CalendarEvents_v1.0.json +++ b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids/CalendarEvents_v1.0.json @@ -88,7 +88,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, { @@ -98,13 +98,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, "onlineMeeting":null @@ -196,7 +196,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, { @@ -206,13 +206,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"2qG34d490QQJTjBKCcjDhEDjZbFtjqqqe3JDJxlc1GA\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"2qG34d490QQJTjBKCcjDhEDjZbFtjqqqe3JDJxlc1GA\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, "onlineMeeting":null @@ -304,7 +304,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, { @@ -314,13 +314,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"ozJYl2KkP4ztQiof64QWgNtS5hx1czNS6pawH3v0AZw\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"ozJYl2KkP4ztQiof64QWgNtS5hx1czNS6pawH3v0AZw\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, "onlineMeeting":null @@ -412,7 +412,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -422,13 +422,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"35oOumhzn8j-tFjW0z9p4J4Qn1R7MNx-ueJ0l_nbl2Q\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"35oOumhzn8j-tFjW0z9p4J4Qn1R7MNx-ueJ0l_nbl2Q\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null @@ -520,7 +520,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -530,13 +530,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null @@ -628,7 +628,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -638,13 +638,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null @@ -736,7 +736,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -746,13 +746,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"KDHHtwETokpIrd-0CMxrNe2pku8bSufS9D5ZG5gdKrg\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"KDHHtwETokpIrd-0CMxrNe2pku8bSufS9D5ZG5gdKrg\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null @@ -844,7 +844,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -854,13 +854,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null @@ -952,7 +952,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" } }, { @@ -962,7 +962,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xzuczado8k_3rlH_zDVGqdQF2xvtCsyfe50ss4MR280\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xzuczado8k_3rlH_zDVGqdQF2xvtCsyfe50ss4MR280\"}" } }, { @@ -972,7 +972,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"HRu855Q5bqB3kj1bf9LTO_ykCwHLiAklcYWUdvvIZU8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"HRu855Q5bqB3kj1bf9LTO_ykCwHLiAklcYWUdvvIZU8\"}" } }, { @@ -982,13 +982,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" } }, "onlineMeeting":null @@ -1080,7 +1080,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" } }, { @@ -1090,7 +1090,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yXsuWvjfGM2Okdqi_8ytlEfiN7dNqY_IfJEyzEE9jWo\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yXsuWvjfGM2Okdqi_8ytlEfiN7dNqY_IfJEyzEE9jWo\"}" } }, { @@ -1100,7 +1100,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"PS5V_GyzVyXk6jjkY-cKVd9UubD2yEntUABT3W6PyT0\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"PS5V_GyzVyXk6jjkY-cKVd9UubD2yEntUABT3W6PyT0\"}" } }, { @@ -1110,13 +1110,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" } }, "onlineMeeting":null diff --git a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids/CalendarView_v1.0.json b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids/CalendarView_v1.0.json index 37656ffbd..cf4a70bd2 100644 --- a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids/CalendarView_v1.0.json +++ b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids/CalendarView_v1.0.json @@ -68,7 +68,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, { @@ -78,13 +78,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, "onlineMeeting":null diff --git a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids/CalendarView_v1.0_wOnlineMeetings.json b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids/CalendarView_v1.0_wOnlineMeetings.json index b55d18688..f0d9773b8 100644 --- a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids/CalendarView_v1.0_wOnlineMeetings.json +++ b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids/CalendarView_v1.0_wOnlineMeetings.json @@ -69,13 +69,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"azure-ad\",\"hash\":\"Kshk8GObYWiFkaMaAioYqdhQKjXdMgx6RhdrNGkgMLs\"}" + "address":"{\"hash\":\"Kshk8GObYWiFkaMaAioYqdhQKjXdMgx6RhdrNGkgMLs\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"azure-ad\",\"hash\":\"kCA4MOkfvB_IwP_zwJlJRXMUW0lcMbzxOk_lt6fLsik\"}" + "address":"{\"hash\":\"kCA4MOkfvB_IwP_zwJlJRXMUW0lcMbzxOk_lt6fLsik\"}" } }, "onlineMeeting":{ @@ -151,7 +151,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"azure-ad\",\"hash\":\"CUARac-vheJg290qudQM5oFzsQx4arPOS4nfy5dpoNc\"}" + "address":"{\"hash\":\"CUARac-vheJg290qudQM5oFzsQx4arPOS4nfy5dpoNc\"}" } }, { @@ -161,13 +161,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"azure-ad\",\"hash\":\"kCA4MOkfvB_IwP_zwJlJRXMUW0lcMbzxOk_lt6fLsik\"}" + "address":"{\"hash\":\"kCA4MOkfvB_IwP_zwJlJRXMUW0lcMbzxOk_lt6fLsik\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"azure-ad\",\"hash\":\"CUARac-vheJg290qudQM5oFzsQx4arPOS4nfy5dpoNc\"}" + "address":"{\"hash\":\"CUARac-vheJg290qudQM5oFzsQx4arPOS4nfy5dpoNc\"}" } }, "onlineMeeting":{ @@ -238,7 +238,7 @@ "attendees":[ ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"azure-ad\",\"hash\":\"kCA4MOkfvB_IwP_zwJlJRXMUW0lcMbzxOk_lt6fLsik\"}" + "address":"{\"hash\":\"kCA4MOkfvB_IwP_zwJlJRXMUW0lcMbzxOk_lt6fLsik\"}" } }, "onlineMeeting":{ diff --git a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids/CalendarView_v1.0_wZoomUrls.json b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids/CalendarView_v1.0_wZoomUrls.json index c66f377c8..9de5d5a38 100644 --- a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids/CalendarView_v1.0_wZoomUrls.json +++ b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids/CalendarView_v1.0_wZoomUrls.json @@ -69,7 +69,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, { @@ -79,13 +79,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, "onlineMeeting":{ diff --git a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids/Event_v1.0.json b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids/Event_v1.0.json index 5d2c7ceb9..2cb147e96 100644 --- a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids/Event_v1.0.json +++ b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids/Event_v1.0.json @@ -86,7 +86,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, { @@ -96,13 +96,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, "onlineMeeting":null diff --git a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids/Events_v1.0.json b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids/Events_v1.0.json index 650ff039d..649d1b1a4 100644 --- a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids/Events_v1.0.json +++ b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids/Events_v1.0.json @@ -88,7 +88,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, { @@ -98,13 +98,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, "onlineMeeting":null @@ -196,7 +196,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, { @@ -206,13 +206,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"2qG34d490QQJTjBKCcjDhEDjZbFtjqqqe3JDJxlc1GA\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"2qG34d490QQJTjBKCcjDhEDjZbFtjqqqe3JDJxlc1GA\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, "onlineMeeting":null @@ -304,7 +304,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, { @@ -314,13 +314,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"ozJYl2KkP4ztQiof64QWgNtS5hx1czNS6pawH3v0AZw\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"ozJYl2KkP4ztQiof64QWgNtS5hx1czNS6pawH3v0AZw\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, "onlineMeeting":null @@ -412,7 +412,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -422,13 +422,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"35oOumhzn8j-tFjW0z9p4J4Qn1R7MNx-ueJ0l_nbl2Q\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"35oOumhzn8j-tFjW0z9p4J4Qn1R7MNx-ueJ0l_nbl2Q\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null @@ -520,7 +520,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -530,13 +530,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null @@ -628,7 +628,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -638,13 +638,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null @@ -736,7 +736,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -746,13 +746,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"KDHHtwETokpIrd-0CMxrNe2pku8bSufS9D5ZG5gdKrg\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"KDHHtwETokpIrd-0CMxrNe2pku8bSufS9D5ZG5gdKrg\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null @@ -844,7 +844,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -854,13 +854,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null @@ -952,7 +952,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" } }, { @@ -962,7 +962,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xzuczado8k_3rlH_zDVGqdQF2xvtCsyfe50ss4MR280\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xzuczado8k_3rlH_zDVGqdQF2xvtCsyfe50ss4MR280\"}" } }, { @@ -972,7 +972,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"HRu855Q5bqB3kj1bf9LTO_ykCwHLiAklcYWUdvvIZU8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"HRu855Q5bqB3kj1bf9LTO_ykCwHLiAklcYWUdvvIZU8\"}" } }, { @@ -982,13 +982,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" } }, "onlineMeeting":null @@ -1080,7 +1080,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" } }, { @@ -1090,7 +1090,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yXsuWvjfGM2Okdqi_8ytlEfiN7dNqY_IfJEyzEE9jWo\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yXsuWvjfGM2Okdqi_8ytlEfiN7dNqY_IfJEyzEE9jWo\"}" } }, { @@ -1100,7 +1100,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"PS5V_GyzVyXk6jjkY-cKVd9UubD2yEntUABT3W6PyT0\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"PS5V_GyzVyXk6jjkY-cKVd9UubD2yEntUABT3W6PyT0\"}" } }, { @@ -1110,13 +1110,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" } }, "onlineMeeting":null diff --git a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids_no-groups/CalendarEvents_v1.0.json b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids_no-groups/CalendarEvents_v1.0.json index 495ea0ad6..0941ca0f1 100644 --- a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids_no-groups/CalendarEvents_v1.0.json +++ b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids_no-groups/CalendarEvents_v1.0.json @@ -88,7 +88,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, { @@ -98,13 +98,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, "onlineMeeting":null @@ -196,7 +196,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, { @@ -206,13 +206,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"2qG34d490QQJTjBKCcjDhEDjZbFtjqqqe3JDJxlc1GA\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"2qG34d490QQJTjBKCcjDhEDjZbFtjqqqe3JDJxlc1GA\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, "onlineMeeting":null @@ -304,7 +304,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, { @@ -314,13 +314,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"ozJYl2KkP4ztQiof64QWgNtS5hx1czNS6pawH3v0AZw\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"ozJYl2KkP4ztQiof64QWgNtS5hx1czNS6pawH3v0AZw\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, "onlineMeeting":null @@ -412,7 +412,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -422,13 +422,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"35oOumhzn8j-tFjW0z9p4J4Qn1R7MNx-ueJ0l_nbl2Q\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"35oOumhzn8j-tFjW0z9p4J4Qn1R7MNx-ueJ0l_nbl2Q\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null @@ -520,7 +520,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -530,13 +530,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null @@ -628,7 +628,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -638,13 +638,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null @@ -736,7 +736,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -746,13 +746,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"KDHHtwETokpIrd-0CMxrNe2pku8bSufS9D5ZG5gdKrg\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"KDHHtwETokpIrd-0CMxrNe2pku8bSufS9D5ZG5gdKrg\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null @@ -844,7 +844,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -854,13 +854,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null @@ -952,7 +952,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" } }, { @@ -962,7 +962,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xzuczado8k_3rlH_zDVGqdQF2xvtCsyfe50ss4MR280\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xzuczado8k_3rlH_zDVGqdQF2xvtCsyfe50ss4MR280\"}" } }, { @@ -972,7 +972,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"HRu855Q5bqB3kj1bf9LTO_ykCwHLiAklcYWUdvvIZU8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"HRu855Q5bqB3kj1bf9LTO_ykCwHLiAklcYWUdvvIZU8\"}" } }, { @@ -982,13 +982,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" } }, "onlineMeeting":null @@ -1080,7 +1080,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" } }, { @@ -1090,7 +1090,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yXsuWvjfGM2Okdqi_8ytlEfiN7dNqY_IfJEyzEE9jWo\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yXsuWvjfGM2Okdqi_8ytlEfiN7dNqY_IfJEyzEE9jWo\"}" } }, { @@ -1100,7 +1100,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"PS5V_GyzVyXk6jjkY-cKVd9UubD2yEntUABT3W6PyT0\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"PS5V_GyzVyXk6jjkY-cKVd9UubD2yEntUABT3W6PyT0\"}" } }, { @@ -1110,13 +1110,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" } }, "onlineMeeting":null diff --git a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids_no-groups/CalendarView_v1.0.json b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids_no-groups/CalendarView_v1.0.json index 37656ffbd..cf4a70bd2 100644 --- a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids_no-groups/CalendarView_v1.0.json +++ b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids_no-groups/CalendarView_v1.0.json @@ -68,7 +68,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, { @@ -78,13 +78,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, "onlineMeeting":null diff --git a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids_no-groups/CalendarView_v1.0_wOnlineMeetings.json b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids_no-groups/CalendarView_v1.0_wOnlineMeetings.json index b55d18688..f0d9773b8 100644 --- a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids_no-groups/CalendarView_v1.0_wOnlineMeetings.json +++ b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids_no-groups/CalendarView_v1.0_wOnlineMeetings.json @@ -69,13 +69,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"azure-ad\",\"hash\":\"Kshk8GObYWiFkaMaAioYqdhQKjXdMgx6RhdrNGkgMLs\"}" + "address":"{\"hash\":\"Kshk8GObYWiFkaMaAioYqdhQKjXdMgx6RhdrNGkgMLs\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"azure-ad\",\"hash\":\"kCA4MOkfvB_IwP_zwJlJRXMUW0lcMbzxOk_lt6fLsik\"}" + "address":"{\"hash\":\"kCA4MOkfvB_IwP_zwJlJRXMUW0lcMbzxOk_lt6fLsik\"}" } }, "onlineMeeting":{ @@ -151,7 +151,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"azure-ad\",\"hash\":\"CUARac-vheJg290qudQM5oFzsQx4arPOS4nfy5dpoNc\"}" + "address":"{\"hash\":\"CUARac-vheJg290qudQM5oFzsQx4arPOS4nfy5dpoNc\"}" } }, { @@ -161,13 +161,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"azure-ad\",\"hash\":\"kCA4MOkfvB_IwP_zwJlJRXMUW0lcMbzxOk_lt6fLsik\"}" + "address":"{\"hash\":\"kCA4MOkfvB_IwP_zwJlJRXMUW0lcMbzxOk_lt6fLsik\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"azure-ad\",\"hash\":\"CUARac-vheJg290qudQM5oFzsQx4arPOS4nfy5dpoNc\"}" + "address":"{\"hash\":\"CUARac-vheJg290qudQM5oFzsQx4arPOS4nfy5dpoNc\"}" } }, "onlineMeeting":{ @@ -238,7 +238,7 @@ "attendees":[ ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"azure-ad\",\"hash\":\"kCA4MOkfvB_IwP_zwJlJRXMUW0lcMbzxOk_lt6fLsik\"}" + "address":"{\"hash\":\"kCA4MOkfvB_IwP_zwJlJRXMUW0lcMbzxOk_lt6fLsik\"}" } }, "onlineMeeting":{ diff --git a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids_no-groups/CalendarView_v1.0_wZoomUrls.json b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids_no-groups/CalendarView_v1.0_wZoomUrls.json index c66f377c8..9de5d5a38 100644 --- a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids_no-groups/CalendarView_v1.0_wZoomUrls.json +++ b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids_no-groups/CalendarView_v1.0_wZoomUrls.json @@ -69,7 +69,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, { @@ -79,13 +79,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, "onlineMeeting":{ diff --git a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids_no-groups/Event_v1.0.json b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids_no-groups/Event_v1.0.json index 5d2c7ceb9..2cb147e96 100644 --- a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids_no-groups/Event_v1.0.json +++ b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids_no-groups/Event_v1.0.json @@ -86,7 +86,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, { @@ -96,13 +96,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, "onlineMeeting":null diff --git a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids_no-groups/Events_v1.0.json b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids_no-groups/Events_v1.0.json index 650ff039d..649d1b1a4 100644 --- a/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids_no-groups/Events_v1.0.json +++ b/docs/sources/microsoft-365/outlook-cal/example-api-responses/sanitized_no-app-ids_no-groups/Events_v1.0.json @@ -88,7 +88,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, { @@ -98,13 +98,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"suStOGza62rXoyXuJ8WxGBD4x4qHE0lhOuCSi5j4CF8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, "onlineMeeting":null @@ -196,7 +196,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, { @@ -206,13 +206,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"2qG34d490QQJTjBKCcjDhEDjZbFtjqqqe3JDJxlc1GA\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"2qG34d490QQJTjBKCcjDhEDjZbFtjqqqe3JDJxlc1GA\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, "onlineMeeting":null @@ -304,7 +304,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, { @@ -314,13 +314,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"ozJYl2KkP4ztQiof64QWgNtS5hx1czNS6pawH3v0AZw\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"ozJYl2KkP4ztQiof64QWgNtS5hx1czNS6pawH3v0AZw\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"_UsB0Yw8M953FpyOz6V9ikDhugZE6P3W72AwwCmmYe8\"}" } }, "onlineMeeting":null @@ -412,7 +412,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -422,13 +422,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"35oOumhzn8j-tFjW0z9p4J4Qn1R7MNx-ueJ0l_nbl2Q\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"35oOumhzn8j-tFjW0z9p4J4Qn1R7MNx-ueJ0l_nbl2Q\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null @@ -520,7 +520,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -530,13 +530,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null @@ -628,7 +628,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -638,13 +638,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null @@ -736,7 +736,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -746,13 +746,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"KDHHtwETokpIrd-0CMxrNe2pku8bSufS9D5ZG5gdKrg\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"KDHHtwETokpIrd-0CMxrNe2pku8bSufS9D5ZG5gdKrg\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null @@ -844,7 +844,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, { @@ -854,13 +854,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"wOJLeblkCPz-4kzW9KSFa2VafQ4IBEankxalIWAN6J8\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"JI66UTnFUIE9eS_6rk-l2mS-K5OhqMj1oQOc58mmtt8\"}" } }, "onlineMeeting":null @@ -952,7 +952,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" } }, { @@ -962,7 +962,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xzuczado8k_3rlH_zDVGqdQF2xvtCsyfe50ss4MR280\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"xzuczado8k_3rlH_zDVGqdQF2xvtCsyfe50ss4MR280\"}" } }, { @@ -972,7 +972,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"HRu855Q5bqB3kj1bf9LTO_ykCwHLiAklcYWUdvvIZU8\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"HRu855Q5bqB3kj1bf9LTO_ykCwHLiAklcYWUdvvIZU8\"}" } }, { @@ -982,13 +982,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" } }, "onlineMeeting":null @@ -1080,7 +1080,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" } }, { @@ -1090,7 +1090,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yXsuWvjfGM2Okdqi_8ytlEfiN7dNqY_IfJEyzEE9jWo\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"yXsuWvjfGM2Okdqi_8ytlEfiN7dNqY_IfJEyzEE9jWo\"}" } }, { @@ -1100,7 +1100,7 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"PS5V_GyzVyXk6jjkY-cKVd9UubD2yEntUABT3W6PyT0\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"PS5V_GyzVyXk6jjkY-cKVd9UubD2yEntUABT3W6PyT0\"}" } }, { @@ -1110,13 +1110,13 @@ "time":"0001-01-01T00:00:00Z" }, "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"uTOzTJCFx4Qkj3_IAlznPQcud3ixYia6avTR52T-Cy4\"}" } } ], "organizer":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"IBE5hivAbcBqnc1ImKUrnXMAJ8TdqM78s6qAXBsDpH4\"}" } }, "onlineMeeting":null diff --git a/docs/sources/microsoft-365/outlook-mail/example-api-responses/sanitized/Message_v1.0.json b/docs/sources/microsoft-365/outlook-mail/example-api-responses/sanitized/Message_v1.0.json index 7bc325714..e468132e4 100644 --- a/docs/sources/microsoft-365/outlook-mail/example-api-responses/sanitized/Message_v1.0.json +++ b/docs/sources/microsoft-365/outlook-mail/example-api-responses/sanitized/Message_v1.0.json @@ -22,18 +22,18 @@ "inferenceClassification":"focused", "sender":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" } }, "from":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" } }, "toRecipients":[ { "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"Obq2eJM8H6PaBmbsLgcx0lmrKetFS9OTpk2LuaA-goI\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"Obq2eJM8H6PaBmbsLgcx0lmrKetFS9OTpk2LuaA-goI\"}" } } ], diff --git a/docs/sources/microsoft-365/outlook-mail/example-api-responses/sanitized/Messages_SentItems_v1.0.json b/docs/sources/microsoft-365/outlook-mail/example-api-responses/sanitized/Messages_SentItems_v1.0.json index 1b14ad544..a0121921e 100644 --- a/docs/sources/microsoft-365/outlook-mail/example-api-responses/sanitized/Messages_SentItems_v1.0.json +++ b/docs/sources/microsoft-365/outlook-mail/example-api-responses/sanitized/Messages_SentItems_v1.0.json @@ -24,18 +24,18 @@ "inferenceClassification":"focused", "sender":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" } }, "from":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" } }, "toRecipients":[ { "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"Obq2eJM8H6PaBmbsLgcx0lmrKetFS9OTpk2LuaA-goI\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"Obq2eJM8H6PaBmbsLgcx0lmrKetFS9OTpk2LuaA-goI\"}" } } ], diff --git a/docs/sources/microsoft-365/outlook-mail/example-api-responses/sanitized_no-app-ids/Message_v1.0.json b/docs/sources/microsoft-365/outlook-mail/example-api-responses/sanitized_no-app-ids/Message_v1.0.json index e2814a14d..b66500929 100644 --- a/docs/sources/microsoft-365/outlook-mail/example-api-responses/sanitized_no-app-ids/Message_v1.0.json +++ b/docs/sources/microsoft-365/outlook-mail/example-api-responses/sanitized_no-app-ids/Message_v1.0.json @@ -21,18 +21,18 @@ "inferenceClassification":"focused", "sender":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" } }, "from":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" } }, "toRecipients":[ { "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"Obq2eJM8H6PaBmbsLgcx0lmrKetFS9OTpk2LuaA-goI\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"Obq2eJM8H6PaBmbsLgcx0lmrKetFS9OTpk2LuaA-goI\"}" } } ], diff --git a/docs/sources/microsoft-365/outlook-mail/example-api-responses/sanitized_no-app-ids/Messages_SentItems_v1.0.json b/docs/sources/microsoft-365/outlook-mail/example-api-responses/sanitized_no-app-ids/Messages_SentItems_v1.0.json index a2043b922..309c59a2b 100644 --- a/docs/sources/microsoft-365/outlook-mail/example-api-responses/sanitized_no-app-ids/Messages_SentItems_v1.0.json +++ b/docs/sources/microsoft-365/outlook-mail/example-api-responses/sanitized_no-app-ids/Messages_SentItems_v1.0.json @@ -23,18 +23,18 @@ "inferenceClassification":"focused", "sender":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" } }, "from":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" } }, "toRecipients":[ { "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"Obq2eJM8H6PaBmbsLgcx0lmrKetFS9OTpk2LuaA-goI\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"Obq2eJM8H6PaBmbsLgcx0lmrKetFS9OTpk2LuaA-goI\"}" } } ], diff --git a/docs/sources/microsoft-365/outlook-mail/example-api-responses/sanitized_no-app-ids_no-groups/Message_v1.0.json b/docs/sources/microsoft-365/outlook-mail/example-api-responses/sanitized_no-app-ids_no-groups/Message_v1.0.json index e2814a14d..b66500929 100644 --- a/docs/sources/microsoft-365/outlook-mail/example-api-responses/sanitized_no-app-ids_no-groups/Message_v1.0.json +++ b/docs/sources/microsoft-365/outlook-mail/example-api-responses/sanitized_no-app-ids_no-groups/Message_v1.0.json @@ -21,18 +21,18 @@ "inferenceClassification":"focused", "sender":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" } }, "from":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" } }, "toRecipients":[ { "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"Obq2eJM8H6PaBmbsLgcx0lmrKetFS9OTpk2LuaA-goI\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"Obq2eJM8H6PaBmbsLgcx0lmrKetFS9OTpk2LuaA-goI\"}" } } ], diff --git a/docs/sources/microsoft-365/outlook-mail/example-api-responses/sanitized_no-app-ids_no-groups/Messages_SentItems_v1.0.json b/docs/sources/microsoft-365/outlook-mail/example-api-responses/sanitized_no-app-ids_no-groups/Messages_SentItems_v1.0.json index a2043b922..309c59a2b 100644 --- a/docs/sources/microsoft-365/outlook-mail/example-api-responses/sanitized_no-app-ids_no-groups/Messages_SentItems_v1.0.json +++ b/docs/sources/microsoft-365/outlook-mail/example-api-responses/sanitized_no-app-ids_no-groups/Messages_SentItems_v1.0.json @@ -23,18 +23,18 @@ "inferenceClassification":"focused", "sender":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" } }, "from":{ "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"aUhZDS0Tjei4n0wfbt9bej85CgpSsYc73vYezVh5mVg\"}" } }, "toRecipients":[ { "emailAddress":{ - "address":"{\"scope\":\"email\",\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"Obq2eJM8H6PaBmbsLgcx0lmrKetFS9OTpk2LuaA-goI\"}" + "address":"{\"domain\":\"M365x214355.onmicrosoft.com\",\"hash\":\"Obq2eJM8H6PaBmbsLgcx0lmrKetFS9OTpk2LuaA-goI\"}" } } ], diff --git a/docs/sources/salesforce/example-api-responses/sanitized/accounts.json b/docs/sources/salesforce/example-api-responses/sanitized/accounts.json index c29203b81..f0fab4266 100644 --- a/docs/sources/salesforce/example-api-responses/sanitized/accounts.json +++ b/docs/sources/salesforce/example-api-responses/sanitized/accounts.json @@ -3,13 +3,13 @@ "Id":"0015Y00002c7g95QAA", "AnnualRevenue":1.23456789E9, "CreatedDate":"2021-03-02T16:31:04.000+0000", - "CreatedById":"{\"scope\":\"salesforce\",\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", + "CreatedById":"{\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", "IsDeleted":false, "LastActivityDate":"2021-03-27", "LastModifiedDate":"2021-03-24T10:11:08.000+0000", - "LastModifiedById":"{\"scope\":\"salesforce\",\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", + "LastModifiedById":"{\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", "NumberOfEmployees":null, - "OwnerId":"{\"scope\":\"salesforce\",\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", + "OwnerId":"{\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", "Ownership":"Public", "ParentId":null, "Rating":null, @@ -20,13 +20,13 @@ "Id":"0015Y00002c7g8uQAA", "AnnualRevenue":1.39E8, "CreatedDate":"2021-03-02T16:31:04.000+0000", - "CreatedById":"{\"scope\":\"salesforce\",\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", + "CreatedById":"{\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", "IsDeleted":false, "LastActivityDate":null, "LastModifiedDate":"2021-03-02T16:31:04.000+0000", - "LastModifiedById":"{\"scope\":\"salesforce\",\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", + "LastModifiedById":"{\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", "NumberOfEmployees":1000, - "OwnerId":"{\"scope\":\"salesforce\",\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", + "OwnerId":"{\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", "Ownership":"Public", "ParentId":null, "Rating":"Hot", diff --git a/docs/sources/salesforce/example-api-responses/sanitized/accounts_by_query.json b/docs/sources/salesforce/example-api-responses/sanitized/accounts_by_query.json index 1cb51817b..1e3cab031 100644 --- a/docs/sources/salesforce/example-api-responses/sanitized/accounts_by_query.json +++ b/docs/sources/salesforce/example-api-responses/sanitized/accounts_by_query.json @@ -9,13 +9,13 @@ "Id":"0015Y00002c7g95QAA", "AnnualRevenue":1.23456789E9, "CreatedDate":"2021-03-02T16:31:04.000+0000", - "CreatedById":"{\"scope\":\"salesforce\",\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", + "CreatedById":"{\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", "IsDeleted":null, "LastActivityDate":"2021-03-27", "LastModifiedDate":"2021-03-24T10:11:08.000+0000", - "LastModifiedById":"{\"scope\":\"salesforce\",\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", + "LastModifiedById":"{\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", "NumberOfEmployees":0, - "OwnerId":"{\"scope\":\"salesforce\",\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", + "OwnerId":"{\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", "Ownership":"Public", "ParentId":null, "Rating":null, @@ -29,13 +29,13 @@ "Id":"0015Y00002c7g8uQAA", "AnnualRevenue":1.39E8, "CreatedDate":"2021-03-02T16:31:04.000+0000", - "CreatedById":"{\"scope\":\"salesforce\",\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", + "CreatedById":"{\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", "IsDeleted":null, "LastActivityDate":null, "LastModifiedDate":"2021-03-02T16:31:04.000+0000", - "LastModifiedById":"{\"scope\":\"salesforce\",\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", + "LastModifiedById":"{\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", "NumberOfEmployees":1000, - "OwnerId":"{\"scope\":\"salesforce\",\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", + "OwnerId":"{\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", "Ownership":"Public", "ParentId":null, "Rating":"Hot", diff --git a/docs/sources/salesforce/example-api-responses/sanitized/related_item_query.json b/docs/sources/salesforce/example-api-responses/sanitized/related_item_query.json index 72928bb66..6f32e5c39 100644 --- a/docs/sources/salesforce/example-api-responses/sanitized/related_item_query.json +++ b/docs/sources/salesforce/example-api-responses/sanitized/related_item_query.json @@ -22,7 +22,7 @@ "CallDurationInSeconds":0, "CallType":null, "CreatedDate":"2021-03-29T08:23:37.000+0000", - "CreatedById":"{\"scope\":\"salesforce\",\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", + "CreatedById":"{\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", "DurationInMinutes":0, "EndDateTime":null, "Id":"00T5Y00007VjHwmUAF", @@ -31,8 +31,8 @@ "IsHighPriority":false, "IsTask":true, "LastModifiedDate":"2021-03-29T08:24:10.000+0000", - "LastModifiedById":"{\"scope\":\"salesforce\",\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", - "OwnerId":"{\"scope\":\"salesforce\",\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", + "LastModifiedById":"{\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", + "OwnerId":"{\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", "Priority":"Normal", "StartDateTime":"2021-03-08T00:00:00.000+0000", "Status":"Completed", @@ -51,7 +51,7 @@ "CallDurationInSeconds":0, "CallType":null, "CreatedDate":"2021-03-12T10:58:52.000+0000", - "CreatedById":"{\"scope\":\"salesforce\",\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", + "CreatedById":"{\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", "DurationInMinutes":60, "EndDateTime":"2021-03-12T12:00:00.000+0000", "Id":"00U5Y00000uID82UAG", @@ -60,8 +60,8 @@ "IsHighPriority":false, "IsTask":false, "LastModifiedDate":"2021-03-29T08:22:31.000+0000", - "LastModifiedById":"{\"scope\":\"salesforce\",\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", - "OwnerId":"{\"scope\":\"salesforce\",\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", + "LastModifiedById":"{\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", + "OwnerId":"{\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", "Priority":null, "StartDateTime":"2021-03-12T11:00:00.000+0000", "Status":null, @@ -80,7 +80,7 @@ "CallDurationInSeconds":0, "CallType":null, "CreatedDate":"2021-03-26T10:20:44.000+0000", - "CreatedById":"{\"scope\":\"salesforce\",\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", + "CreatedById":"{\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", "DurationInMinutes":0, "EndDateTime":null, "Id":"00T5Y00007ViovHUAR", @@ -89,8 +89,8 @@ "IsHighPriority":false, "IsTask":true, "LastModifiedDate":"2021-03-26T10:20:44.000+0000", - "LastModifiedById":"{\"scope\":\"salesforce\",\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", - "OwnerId":"{\"scope\":\"salesforce\",\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", + "LastModifiedById":"{\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", + "OwnerId":"{\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", "Priority":"Normal", "StartDateTime":"2021-03-26T00:00:00.000+0000", "Status":"Completed", @@ -109,7 +109,7 @@ "CallDurationInSeconds":0, "CallType":null, "CreatedDate":"2021-03-26T10:19:56.000+0000", - "CreatedById":"{\"scope\":\"salesforce\",\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", + "CreatedById":"{\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", "DurationInMinutes":1440, "EndDateTime":"2021-03-27T00:00:00.000+0000", "Id":"00U5Y00000uIRR4UAO", @@ -118,8 +118,8 @@ "IsHighPriority":false, "IsTask":false, "LastModifiedDate":"2021-03-26T10:19:56.000+0000", - "LastModifiedById":"{\"scope\":\"salesforce\",\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", - "OwnerId":"{\"scope\":\"salesforce\",\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", + "LastModifiedById":"{\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", + "OwnerId":"{\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", "Priority":null, "StartDateTime":"2021-03-27T00:00:00.000+0000", "Status":null, @@ -138,7 +138,7 @@ "CallDurationInSeconds":0, "CallType":null, "CreatedDate":"2021-03-12T10:58:44.000+0000", - "CreatedById":"{\"scope\":\"salesforce\",\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", + "CreatedById":"{\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", "DurationInMinutes":0, "EndDateTime":null, "Id":"00T5Y00007Ty9bRUAR", @@ -147,8 +147,8 @@ "IsHighPriority":false, "IsTask":true, "LastModifiedDate":"2021-03-12T10:58:44.000+0000", - "LastModifiedById":"{\"scope\":\"salesforce\",\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", - "OwnerId":"{\"scope\":\"salesforce\",\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", + "LastModifiedById":"{\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", + "OwnerId":"{\"hash\":\"FvgRGSB_DRy-y2zUpN35_Josv6-No-nx2M2VGfOx5z4\"}", "Priority":"Normal", "StartDateTime":"2021-03-12T00:00:00.000+0000", "Status":"Completed", diff --git a/docs/sources/salesforce/example-api-responses/sanitized/users.json b/docs/sources/salesforce/example-api-responses/sanitized/users.json index db446bdb0..575690638 100644 --- a/docs/sources/salesforce/example-api-responses/sanitized/users.json +++ b/docs/sources/salesforce/example-api-responses/sanitized/users.json @@ -3,10 +3,10 @@ "AccountId":null, "ContactId":"null", "CreatedDate":"2021-03-02T16:31:04.000+0000", - "CreatedById":"{\"scope\":\"salesforce\",\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", - "Email":"{\"scope\":\"email\",\"domain\":\"chatter.salesforce.com\",\"hash\":\"JMXUidwYSB43dLmUcrQSf1JqJaLEr2e8HlkceIs6y34\"}", + "CreatedById":"{\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", + "Email":"{\"domain\":\"chatter.salesforce.com\",\"hash\":\"JMXUidwYSB43dLmUcrQSf1JqJaLEr2e8HlkceIs6y34\"}", "EmailEncodingKey":"UTF-8", - "Id":"{\"scope\":\"salesforce\",\"hash\":\"kQY8YvX3epA-POQrl7CEKuXauq4godtAeaooSbbrEV8\"}", + "Id":"{\"hash\":\"kQY8YvX3epA-POQrl7CEKuXauq4godtAeaooSbbrEV8\"}", "IsActive":true, "LastLoginDate":null, "LastModifiedDate":"2021-03-02T16:31:04.000+0000", @@ -19,10 +19,10 @@ "AccountId":null, "ContactId":"null", "CreatedDate":"2021-03-02T16:31:04.000+0000", - "CreatedById":"{\"scope\":\"salesforce\",\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", - "Email":"{\"scope\":\"email\",\"domain\":\"example.com\",\"hash\":\"wofbf_MBpIWTEVLl1KLYaAz0a6LjHgu-YwEz1eY0FjY\"}", + "CreatedById":"{\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", + "Email":"{\"domain\":\"example.com\",\"hash\":\"wofbf_MBpIWTEVLl1KLYaAz0a6LjHgu-YwEz1eY0FjY\"}", "EmailEncodingKey":"UTF-8", - "Id":"{\"scope\":\"salesforce\",\"hash\":\"VHQj5a2FSR2YogZdBv94Tthgdcps003--2mMbJwjClU\"}", + "Id":"{\"hash\":\"VHQj5a2FSR2YogZdBv94Tthgdcps003--2mMbJwjClU\"}", "IsActive":true, "LastLoginDate":"2023-03-10T16:51:26.000+0000", "LastModifiedDate":"2021-03-02T16:31:04.000+0000", diff --git a/docs/sources/salesforce/example-api-responses/sanitized/users_by_query.json b/docs/sources/salesforce/example-api-responses/sanitized/users_by_query.json index 3800f64cc..be08fb2a6 100644 --- a/docs/sources/salesforce/example-api-responses/sanitized/users_by_query.json +++ b/docs/sources/salesforce/example-api-responses/sanitized/users_by_query.json @@ -9,10 +9,10 @@ "AccountId":null, "ContactId":"null", "CreatedDate":"2021-03-02T16:31:04.000+0000", - "CreatedById":"{\"scope\":\"salesforce\",\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", - "Email":"{\"scope\":\"email\",\"domain\":\"chatter.salesforce.com\",\"hash\":\"JMXUidwYSB43dLmUcrQSf1JqJaLEr2e8HlkceIs6y34\"}", + "CreatedById":"{\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", + "Email":"{\"domain\":\"chatter.salesforce.com\",\"hash\":\"JMXUidwYSB43dLmUcrQSf1JqJaLEr2e8HlkceIs6y34\"}", "EmailEncodingKey":"UTF-8", - "Id":"{\"scope\":\"salesforce\",\"hash\":\"kQY8YvX3epA-POQrl7CEKuXauq4godtAeaooSbbrEV8\"}", + "Id":"{\"hash\":\"kQY8YvX3epA-POQrl7CEKuXauq4godtAeaooSbbrEV8\"}", "IsActive":true, "LastLoginDate":null, "LastModifiedDate":"2021-03-02T16:31:04.000+0000", @@ -28,10 +28,10 @@ "AccountId":null, "ContactId":"null", "CreatedDate":"2021-03-02T16:31:04.000+0000", - "CreatedById":"{\"scope\":\"salesforce\",\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", - "Email":"{\"scope\":\"email\",\"domain\":\"example.com\",\"hash\":\"wofbf_MBpIWTEVLl1KLYaAz0a6LjHgu-YwEz1eY0FjY\"}", + "CreatedById":"{\"hash\":\"WREVnRtj0N9dGhZfwAgC8Gw-IBQIGk-7JpUbxVSyEy8\"}", + "Email":"{\"domain\":\"example.com\",\"hash\":\"wofbf_MBpIWTEVLl1KLYaAz0a6LjHgu-YwEz1eY0FjY\"}", "EmailEncodingKey":"UTF-8", - "Id":"{\"scope\":\"salesforce\",\"hash\":\"VHQj5a2FSR2YogZdBv94Tthgdcps003--2mMbJwjClU\"}", + "Id":"{\"hash\":\"VHQj5a2FSR2YogZdBv94Tthgdcps003--2mMbJwjClU\"}", "IsActive":true, "LastLoginDate":"2023-03-17T10:40:29.000+0000", "LastModifiedDate":"2021-03-02T16:31:04.000+0000", diff --git a/docs/sources/slack/example-api-responses/sanitized/discovery-conversations-history.json b/docs/sources/slack/example-api-responses/sanitized/discovery-conversations-history.json index 5b568c0d3..793e592b3 100644 --- a/docs/sources/slack/example-api-responses/sanitized/discovery-conversations-history.json +++ b/docs/sources/slack/example-api-responses/sanitized/discovery-conversations-history.json @@ -4,22 +4,22 @@ "messages":[ { "type":"message", - "user":"{\"scope\":\"slack\",\"hash\":\"1GJcmG2Yt3aOsk4gdhKR3Su4PFav1QHrFAO4IfvFX4U\"}", + "user":"{\"hash\":\"1GJcmG2Yt3aOsk4gdhKR3Su4PFav1QHrFAO4IfvFX4U\"}", "ts":"1234561409.000002", "reactions":[ { "name":"slightly_smiling_face", "users":[ - "{\"scope\":\"slack\",\"hash\":\"J3naaMunVdXBRevOPonxRvLPn1Z-CzVNeKqfSVjnE0g\"}", - "{\"scope\":\"slack\",\"hash\":\"4j1wnXlhWV17ZmzH7DtuOpA2ziQ-4-ZqbpqBRj7pyr4\"}", - "{\"scope\":\"slack\",\"hash\":\"By9wnVuwPV3xzCT63UDVFSYK7ADBy3AOo87k_9N1l6c\"}" + "{\"hash\":\"J3naaMunVdXBRevOPonxRvLPn1Z-CzVNeKqfSVjnE0g\"}", + "{\"hash\":\"4j1wnXlhWV17ZmzH7DtuOpA2ziQ-4-ZqbpqBRj7pyr4\"}", + "{\"hash\":\"By9wnVuwPV3xzCT63UDVFSYK7ADBy3AOo87k_9N1l6c\"}" ], "count":3 }, { "name":"tada", "users":[ - "{\"scope\":\"slack\",\"hash\":\"cBAkrpTEyw8LOAlvTnh8tcU-KLNnPBJ-UHYEXg_0cZQ\"}" + "{\"hash\":\"cBAkrpTEyw8LOAlvTnh8tcU-KLNnPBJ-UHYEXg_0cZQ\"}" ], "count":1 } @@ -58,7 +58,7 @@ "ts":"1234561515.000007", "wibblr":true, "edited":{ - "user":"{\"scope\":\"slack\",\"hash\":\"a--WYfWyhdweZXjOp8cOVe-s3ZD_hl07oe_jpgITxRM\"}", + "user":"{\"hash\":\"a--WYfWyhdweZXjOp8cOVe-s3ZD_hl07oe_jpgITxRM\"}", "ts":"38327498237.000000" }, "attachments":[ @@ -70,7 +70,7 @@ { "client_msg_id":"314a746d-82c0-4a05-a081-429e4c096c3f", "type":"message", - "user":"{\"scope\":\"slack\",\"hash\":\"a--WYfWyhdweZXjOp8cOVe-s3ZD_hl07oe_jpgITxRM\"}", + "user":"{\"hash\":\"a--WYfWyhdweZXjOp8cOVe-s3ZD_hl07oe_jpgITxRM\"}", "ts":"1651249518.059679", "team":"T02MT9XBJL9", "user_team":"T02MT9XBJL9", @@ -88,7 +88,7 @@ }, { "type":"user", - "user_id":"{\"scope\":\"slack\",\"hash\":\"fyCnHbAdterJaFBMVnh6bo_qduSAt-k18eEgbYN_FqI\"}" + "user_id":"{\"hash\":\"fyCnHbAdterJaFBMVnh6bo_qduSAt-k18eEgbYN_FqI\"}" }, { "type":"text" @@ -123,28 +123,28 @@ "reply_users_count":4, "latest_reply":"1651600000.000001", "reply_users":[ - "{\"scope\":\"slack\",\"hash\":\"-_0U24G8TUIEb9zrrOzQF4FUb5Z02maG29jOKp1RNhk\"}", - "{\"scope\":\"slack\",\"hash\":\"1GJcmG2Yt3aOsk4gdhKR3Su4PFav1QHrFAO4IfvFX4U\"}", - "{\"scope\":\"slack\",\"hash\":\"J3naaMunVdXBRevOPonxRvLPn1Z-CzVNeKqfSVjnE0g\"}", - "{\"scope\":\"slack\",\"hash\":\"4j1wnXlhWV17ZmzH7DtuOpA2ziQ-4-ZqbpqBRj7pyr4\"}" + "{\"hash\":\"-_0U24G8TUIEb9zrrOzQF4FUb5Z02maG29jOKp1RNhk\"}", + "{\"hash\":\"1GJcmG2Yt3aOsk4gdhKR3Su4PFav1QHrFAO4IfvFX4U\"}", + "{\"hash\":\"J3naaMunVdXBRevOPonxRvLPn1Z-CzVNeKqfSVjnE0g\"}", + "{\"hash\":\"4j1wnXlhWV17ZmzH7DtuOpA2ziQ-4-ZqbpqBRj7pyr4\"}" ], "replies":[ { - "user":"{\"scope\":\"slack\",\"hash\":\"-_0U24G8TUIEb9zrrOzQF4FUb5Z02maG29jOKp1RNhk\"}", + "user":"{\"hash\":\"-_0U24G8TUIEb9zrrOzQF4FUb5Z02maG29jOKp1RNhk\"}", "ts":"1651598339.434889" }, { - "user":"{\"scope\":\"slack\",\"hash\":\"1GJcmG2Yt3aOsk4gdhKR3Su4PFav1QHrFAO4IfvFX4U\"}", + "user":"{\"hash\":\"1GJcmG2Yt3aOsk4gdhKR3Su4PFav1QHrFAO4IfvFX4U\"}", "ts":"1651598395.311239" }, { - "user":"{\"scope\":\"slack\",\"hash\":\"J3naaMunVdXBRevOPonxRvLPn1Z-CzVNeKqfSVjnE0g\"}", + "user":"{\"hash\":\"J3naaMunVdXBRevOPonxRvLPn1Z-CzVNeKqfSVjnE0g\"}", "ts":"1651598519.298169" }, { - "user":"{\"scope\":\"slack\",\"hash\":\"4j1wnXlhWV17ZmzH7DtuOpA2ziQ-4-ZqbpqBRj7pyr4\"}", + "user":"{\"hash\":\"4j1wnXlhWV17ZmzH7DtuOpA2ziQ-4-ZqbpqBRj7pyr4\"}", "ts":"1651599241.015189", - "parent_user_id":"{\"scope\":\"slack\",\"hash\":\"MoCetFMMeJZUq3HZFTP7CdOaddg0f7zvKBN2ch_IUnM\"}" + "parent_user_id":"{\"hash\":\"MoCetFMMeJZUq3HZFTP7CdOaddg0f7zvKBN2ch_IUnM\"}" } ], "is_locked":false, @@ -175,16 +175,16 @@ ] }, { - "user":"{\"scope\":\"slack\",\"hash\":\"BMW33akERx6B1jg4ktZ3Q6lh18zJptJ0zYoRgqcjdxU\"}", + "user":"{\"hash\":\"BMW33akERx6B1jg4ktZ3Q6lh18zJptJ0zYoRgqcjdxU\"}", "channel":"D075J2RKK4Y", "room":{ "id":"R07BNSQTZSP", - "created_by":"{\"scope\":\"slack\",\"hash\":\"ht3jIZhCUKqR7UVboNfpxTZZUWLoExaW1WX6GG19JVg\"}", + "created_by":"{\"hash\":\"ht3jIZhCUKqR7UVboNfpxTZZUWLoExaW1WX6GG19JVg\"}", "date_start":1720542372, "date_end":1720542756, "participant_history":[ - "{\"scope\":\"slack\",\"hash\":\"ht3jIZhCUKqR7UVboNfpxTZZUWLoExaW1WX6GG19JVg\"}", - "{\"scope\":\"slack\",\"hash\":\"C35tSgm0FijTntSB1kSz4RzerO3J58n-H3rwI7A0698\"}" + "{\"hash\":\"ht3jIZhCUKqR7UVboNfpxTZZUWLoExaW1WX6GG19JVg\"}", + "{\"hash\":\"C35tSgm0FijTntSB1kSz4RzerO3J58n-H3rwI7A0698\"}" ], "canvas_thread_ts":"1720542372.566689", "thread_root_ts":"1720542372.566689", @@ -210,7 +210,7 @@ "type":"message", "ts":"1720542372.566689", "edited":{ - "user":"{\"scope\":\"slack\",\"hash\":\"BMW33akERx6B1jg4ktZ3Q6lh18zJptJ0zYoRgqcjdxU\"}", + "user":"{\"hash\":\"BMW33akERx6B1jg4ktZ3Q6lh18zJptJ0zYoRgqcjdxU\"}", "ts":"1720542757.000000" }, "blocks":[ @@ -232,4 +232,4 @@ } ], "offset":"1463084600.000000" -} \ No newline at end of file +} diff --git a/docs/sources/slack/example-api-responses/sanitized/discovery-conversations-info.json b/docs/sources/slack/example-api-responses/sanitized/discovery-conversations-info.json index f410aadb8..fdb22160f 100644 --- a/docs/sources/slack/example-api-responses/sanitized/discovery-conversations-info.json +++ b/docs/sources/slack/example-api-responses/sanitized/discovery-conversations-info.json @@ -8,7 +8,7 @@ "is_archived":false, "is_general":false, "unlinked":0, - "creator":"{\"scope\":\"slack\",\"hash\":\"MOMSVXXFHYCrH2e8Zrt_0G9lcd_GK4cUKRXBmO2QAa0\"}", + "creator":"{\"hash\":\"MOMSVXXFHYCrH2e8Zrt_0G9lcd_GK4cUKRXBmO2QAa0\"}", "is_moved":0, "is_shared":true, "is_global_shared":false, diff --git a/docs/sources/slack/example-api-responses/sanitized/discovery-users-list.json b/docs/sources/slack/example-api-responses/sanitized/discovery-users-list.json index 6a906dbc5..af7afecdf 100644 --- a/docs/sources/slack/example-api-responses/sanitized/discovery-users-list.json +++ b/docs/sources/slack/example-api-responses/sanitized/discovery-users-list.json @@ -2,14 +2,14 @@ "ok":true, "users":[ { - "id":"{\"scope\":\"slack\",\"hash\":\"BZcy5qhkyGyUTWR9hC_my2o6pHLKA4C8MHUHRy1K5Ts\"}", + "id":"{\"hash\":\"BZcy5qhkyGyUTWR9hC_my2o6pHLKA4C8MHUHRy1K5Ts\"}", "deleted":false, "color":"e7392d", "tz":"America/Los_Angeles", "tz_label":"Pacific Standard Time", "tz_offset":-28800, "profile":{ - "email":"{\"scope\":\"email\",\"domain\":\"domain.com\",\"hash\":\"hUnnRlSR8lUa37PCo-APXltncFZ3mPn3sgLmaI2pDA8\"}", + "email":"{\"domain\":\"domain.com\",\"hash\":\"hUnnRlSR8lUa37PCo-APXltncFZ3mPn3sgLmaI2pDA8\"}", "team":"T02DDBANBM5" }, "is_admin":true, @@ -27,14 +27,14 @@ ] }, { - "id":"{\"scope\":\"slack\",\"hash\":\"fyCnHbAdterJaFBMVnh6bo_qduSAt-k18eEgbYN_FqI\"}", + "id":"{\"hash\":\"fyCnHbAdterJaFBMVnh6bo_qduSAt-k18eEgbYN_FqI\"}", "deleted":false, "color":"4bbe2e", "tz":"America/Los_Angeles", "tz_label":"Pacific Standard Time", "tz_offset":-28800, "profile":{ - "email":"{\"scope\":\"email\",\"domain\":\"domain.com\",\"hash\":\"DkRMkqDGNK3wQKF7dvYWOuRMDIJVwtlkVcLMbtFkNyc\"}", + "email":"{\"domain\":\"domain.com\",\"hash\":\"DkRMkqDGNK3wQKF7dvYWOuRMDIJVwtlkVcLMbtFkNyc\"}", "team":"T02DDBANBM5" }, "is_admin":false, @@ -53,14 +53,14 @@ ] }, { - "id":"{\"scope\":\"slack\",\"hash\":\"mJlhl3xv52fNY6wyUps5mBYPCl1nVWHT442eQ7v-lJw\"}", + "id":"{\"hash\":\"mJlhl3xv52fNY6wyUps5mBYPCl1nVWHT442eQ7v-lJw\"}", "deleted":false, "color":"9f69e7", "tz":"America/Los_Angeles", "tz_label":"Pacific Standard Time", "tz_offset":-28800, "profile":{ - "email":"{\"scope\":\"email\",\"domain\":\"domain.com\",\"hash\":\"sI1oFw2sET0c7SIXZE2lVvwWfnnX6CB8tutqP9kTnAE\"}", + "email":"{\"domain\":\"domain.com\",\"hash\":\"sI1oFw2sET0c7SIXZE2lVvwWfnnX6CB8tutqP9kTnAE\"}", "team":"T02DDBANBM5" }, "is_admin":true, diff --git a/docs/sources/zoom/example-api-responses/sanitized/list-user-meetings.json b/docs/sources/zoom/example-api-responses/sanitized/list-user-meetings.json index eb11392be..432cfb9b0 100644 --- a/docs/sources/zoom/example-api-responses/sanitized/list-user-meetings.json +++ b/docs/sources/zoom/example-api-responses/sanitized/list-user-meetings.json @@ -7,7 +7,7 @@ { "uuid":"mlghmfghlBBB", "id":11111, - "host_id":"{\"scope\":\"zoom\",\"hash\":\"YCq-iwWo1b500r_AH_4tKLuP0oBLrlwoHEpY7DSxi8c\"}", + "host_id":"{\"hash\":\"YCq-iwWo1b500r_AH_4tKLuP0oBLrlwoHEpY7DSxi8c\"}", "type":2, "start_time":"2019-08-16T02:00:00Z", "duration":30, @@ -17,7 +17,7 @@ { "uuid":"J8H8eavweUcd321==", "id":2222, - "host_id":"{\"scope\":\"zoom\",\"hash\":\"YCq-iwWo1b500r_AH_4tKLuP0oBLrlwoHEpY7DSxi8c\"}", + "host_id":"{\"hash\":\"YCq-iwWo1b500r_AH_4tKLuP0oBLrlwoHEpY7DSxi8c\"}", "type":2, "start_time":"2019-08-16T19:00:00Z", "duration":60, @@ -27,7 +27,7 @@ { "uuid":"SGVTAcfSfCbbbb", "id":33333, - "host_id":"{\"scope\":\"zoom\",\"hash\":\"YCq-iwWo1b500r_AH_4tKLuP0oBLrlwoHEpY7DSxi8c\"}", + "host_id":"{\"hash\":\"YCq-iwWo1b500r_AH_4tKLuP0oBLrlwoHEpY7DSxi8c\"}", "type":2, "start_time":"2019-08-16T22:00:00Z", "duration":60, @@ -37,7 +37,7 @@ { "uuid":"64123avdfsMVA==", "id":44444, - "host_id":"{\"scope\":\"zoom\",\"hash\":\"YCq-iwWo1b500r_AH_4tKLuP0oBLrlwoHEpY7DSxi8c\"}", + "host_id":"{\"hash\":\"YCq-iwWo1b500r_AH_4tKLuP0oBLrlwoHEpY7DSxi8c\"}", "type":2, "start_time":"2019-08-29T18:00:00Z", "duration":60, diff --git a/docs/sources/zoom/example-api-responses/sanitized/list-users.json b/docs/sources/zoom/example-api-responses/sanitized/list-users.json index 5ee81fc02..9b9e94837 100644 --- a/docs/sources/zoom/example-api-responses/sanitized/list-users.json +++ b/docs/sources/zoom/example-api-responses/sanitized/list-users.json @@ -6,10 +6,10 @@ "users":[ { "id":"p~JzXCV2FA272NOeqHYQbR4PewwSZI9hznATn7Wse3j8GpsoD91NC0nDg1vNKrhPEc", - "email":"{\"scope\":\"email\",\"domain\":\"example.com\",\"hash\":\"8ZuLJANBU0hIFqmaE8RjwHZqRb4MezRyGZ6rLZUkKSg\"}", + "email":"{\"domain\":\"example.com\",\"hash\":\"8ZuLJANBU0hIFqmaE8RjwHZqRb4MezRyGZ6rLZUkKSg\"}", "type":2, "pmi":"p~LKW3WIP3bZzEQFelvQBi0lpLDZtk-1qJbWe3rHfhYhdfeki-8voee3S0wopon6Y3", - "phone_number":"{\"scope\":\"zoom\",\"hash\":\"gYkykBgGMDuc3PCagpgnLxf71Bde2_7QuMV41oIRypc\"}", + "phone_number":"{\"hash\":\"gYkykBgGMDuc3PCagpgnLxf71Bde2_7QuMV41oIRypc\"}", "timezone":"America/Los_Angeles", "verified":1, "dept":"", diff --git a/docs/sources/zoom/example-api-responses/sanitized/meeting-details.json b/docs/sources/zoom/example-api-responses/sanitized/meeting-details.json index ddbb85179..470f9b0ac 100644 --- a/docs/sources/zoom/example-api-responses/sanitized/meeting-details.json +++ b/docs/sources/zoom/example-api-responses/sanitized/meeting-details.json @@ -1,8 +1,8 @@ { "created_at":"2019-09-09T15:54:24Z", "duration":60, - "host_id":"{\"scope\":\"zoom\",\"hash\":\"vo5kKWepk7kE9KmMkB_ETGinPpXTv1uqiwMwwypWZoc\"}", - "host_email":"{\"scope\":\"email\",\"domain\":\"example.com\",\"hash\":\"H53zSk2P3-D_iGoG9l_KxsD84BJoSCtzfQVAYTQ5CxU\"}", + "host_id":"{\"hash\":\"vo5kKWepk7kE9KmMkB_ETGinPpXTv1uqiwMwwypWZoc\"}", + "host_email":"{\"domain\":\"example.com\",\"hash\":\"H53zSk2P3-D_iGoG9l_KxsD84BJoSCtzfQVAYTQ5CxU\"}", "id":1234555466, "start_time":"2019-08-30T22:00:00Z", "status":"waiting", diff --git a/docs/sources/zoom/example-api-responses/sanitized/past-meeting-details.json b/docs/sources/zoom/example-api-responses/sanitized/past-meeting-details.json index aaeba553b..2de410d32 100644 --- a/docs/sources/zoom/example-api-responses/sanitized/past-meeting-details.json +++ b/docs/sources/zoom/example-api-responses/sanitized/past-meeting-details.json @@ -1,9 +1,9 @@ { "uuid":"JbkqFkfqQ0e7+CZluSnc1g==", "id":535548971, - "host_id":"{\"scope\":\"zoom\",\"hash\":\"drgC7otecpWF-mfMTG3n3vedmeWABJMHAXFGTlUmlb4\"}", + "host_id":"{\"hash\":\"drgC7otecpWF-mfMTG3n3vedmeWABJMHAXFGTlUmlb4\"}", "type":2, - "user_email":"{\"scope\":\"email\",\"domain\":\"example.com\",\"hash\":\"_Mqo2yH0QgDytVpmJhxPaE36fR9YYF4mJyAMtmlLUAY\"}", + "user_email":"{\"domain\":\"example.com\",\"hash\":\"_Mqo2yH0QgDytVpmJhxPaE36fR9YYF4mJyAMtmlLUAY\"}", "start_time":"2020-04-01T07:00:30Z", "end_time":"2020-04-01T07:02:01Z", "duration":2, diff --git a/docs/sources/zoom/example-api-responses/sanitized/past-meeting-participants.json b/docs/sources/zoom/example-api-responses/sanitized/past-meeting-participants.json index cb92ce7e8..efac715a1 100644 --- a/docs/sources/zoom/example-api-responses/sanitized/past-meeting-participants.json +++ b/docs/sources/zoom/example-api-responses/sanitized/past-meeting-participants.json @@ -5,13 +5,13 @@ "next_page_token":"DHJsM2Ymfeqp5pggMCgAtUmuRZFT7AtG5pXHgMB6yYuE8uav2u4", "participants":[ { - "id":"{\"scope\":\"zoom\",\"hash\":\"HhryFcaMsI6okt2OKXNk4oZMIc28htFpliKBztjwCUE\"}", - "user_email":"{\"scope\":\"email\",\"domain\":\"example.com\",\"hash\":\"PFsxS8oxlBJ9dZkL1zNMvRIajvbO3VzZpbdT-ty6Gm0\"}" + "id":"{\"hash\":\"HhryFcaMsI6okt2OKXNk4oZMIc28htFpliKBztjwCUE\"}", + "user_email":"{\"domain\":\"example.com\",\"hash\":\"PFsxS8oxlBJ9dZkL1zNMvRIajvbO3VzZpbdT-ty6Gm0\"}" }, { - "id":"{\"scope\":\"zoom\",\"hash\":\"Ww6eCgduxKK6I_l2nqOvpafSKCskTO62IzmY-CAbeEo\"}", - "user_email":"{\"scope\":\"email\",\"domain\":\"example.com\",\"hash\":\"jgT11iw7JOUdn6TMyoDssjtXrXGpy31m38W_Uv-rric\"}", - "pmi":"{\"scope\":\"zoom\",\"hash\":\"LKW3WIP3bZzEQFelvQBi0lpLDZtk-1qJbWe3rHfhYhc\"}" + "id":"{\"hash\":\"Ww6eCgduxKK6I_l2nqOvpafSKCskTO62IzmY-CAbeEo\"}", + "user_email":"{\"domain\":\"example.com\",\"hash\":\"jgT11iw7JOUdn6TMyoDssjtXrXGpy31m38W_Uv-rric\"}", + "pmi":"{\"hash\":\"LKW3WIP3bZzEQFelvQBi0lpLDZtk-1qJbWe3rHfhYhc\"}" } ] } diff --git a/docs/sources/zoom/example-api-responses/sanitized/report-meeting-details.json b/docs/sources/zoom/example-api-responses/sanitized/report-meeting-details.json index cbaa33fe5..05e9ad295 100644 --- a/docs/sources/zoom/example-api-responses/sanitized/report-meeting-details.json +++ b/docs/sources/zoom/example-api-responses/sanitized/report-meeting-details.json @@ -7,6 +7,6 @@ "start_time":"2022-03-15T07:40:46Z", "total_minutes":3, "type":2, - "user_email":"{\"scope\":\"email\",\"domain\":\"example.com\",\"hash\":\"cT4rXK7pXh_praaHEyRWzkSHVY6wBNEwngSXsuQ7fTQ\"}", + "user_email":"{\"domain\":\"example.com\",\"hash\":\"cT4rXK7pXh_praaHEyRWzkSHVY6wBNEwngSXsuQ7fTQ\"}", "uuid":"iOTQZPmhTUq5a232ETb9eg==" } diff --git a/docs/sources/zoom/example-api-responses/sanitized/report-meeting-participants.json b/docs/sources/zoom/example-api-responses/sanitized/report-meeting-participants.json index 0f537ea6a..24cea42ce 100644 --- a/docs/sources/zoom/example-api-responses/sanitized/report-meeting-participants.json +++ b/docs/sources/zoom/example-api-responses/sanitized/report-meeting-participants.json @@ -8,14 +8,14 @@ "customer_key":"349589LkJyeW", "duration":259, "failover":false, - "id":"{\"scope\":\"zoom\",\"hash\":\"VjaDLjRhCKAqZXudj3csGB04rnu-0CZB8xTximmvE6I\"}", + "id":"{\"hash\":\"VjaDLjRhCKAqZXudj3csGB04rnu-0CZB8xTximmvE6I\"}", "join_time":"2022-03-23T06:58:09Z", "leave_time":"2022-03-23T07:02:28Z", - "user_email":"{\"scope\":\"email\",\"domain\":\"example.com\",\"hash\":\"cT4rXK7pXh_praaHEyRWzkSHVY6wBNEwngSXsuQ7fTQ\"}", - "user_id":"{\"scope\":\"zoom\",\"hash\":\"ISyOqmEgl9Ec1uB-GWWZDdqDqdQDTRwpTM8CjUMOnwU\"}", + "user_email":"{\"domain\":\"example.com\",\"hash\":\"cT4rXK7pXh_praaHEyRWzkSHVY6wBNEwngSXsuQ7fTQ\"}", + "user_id":"{\"hash\":\"ISyOqmEgl9Ec1uB-GWWZDdqDqdQDTRwpTM8CjUMOnwU\"}", "status":"in_meeting", "bo_mtg_id":"27423744", - "pmi":"{\"scope\":\"zoom\",\"hash\":\"LKW3WIP3bZzEQFelvQBi0lpLDZtk-1qJbWe3rHfhYhc\"}" + "pmi":"{\"hash\":\"LKW3WIP3bZzEQFelvQBi0lpLDZtk-1qJbWe3rHfhYhc\"}" } ] } diff --git a/docs/sources/zoom/example-api-responses/sanitized/report-user-meetings.json b/docs/sources/zoom/example-api-responses/sanitized/report-user-meetings.json index 9e1d6ad4d..3a7d0b521 100644 --- a/docs/sources/zoom/example-api-responses/sanitized/report-user-meetings.json +++ b/docs/sources/zoom/example-api-responses/sanitized/report-user-meetings.json @@ -16,7 +16,7 @@ "start_time":"2019-07-15T23:24:52Z", "total_minutes":11, "type":2, - "user_email":"{\"scope\":\"email\",\"domain\":\"example.com\",\"hash\":\"cT4rXK7pXh_praaHEyRWzkSHVY6wBNEwngSXsuQ7fTQ\"}", + "user_email":"{\"domain\":\"example.com\",\"hash\":\"cT4rXK7pXh_praaHEyRWzkSHVY6wBNEwngSXsuQ7fTQ\"}", "uuid":"4444AAAiAAAAAiAiAiiAii==", "schedule_time":"12/22/2021 16:20", "join_waiting_room_time":"02/11/2022 16:15", diff --git a/java/core/src/test/java/co/worklytics/psoxy/impl/RESTApiSanitizerImplTest.java b/java/core/src/test/java/co/worklytics/psoxy/impl/RESTApiSanitizerImplTest.java index 1cb77c8da..ef57c66d3 100644 --- a/java/core/src/test/java/co/worklytics/psoxy/impl/RESTApiSanitizerImplTest.java +++ b/java/core/src/test/java/co/worklytics/psoxy/impl/RESTApiSanitizerImplTest.java @@ -293,7 +293,7 @@ void pseudonymizeWithReversalKey() { //NOTE: this is a LEGACY case MapFunction f = sanitizer.getPseudonymize(Transform.Pseudonymize.builder().includeReversible(true).build()); - assertEquals("{\"scope\":\"scope\",\"hash\":\"kCGiAd9lGjEbWqbPlXo32fOl5YVmrasomP4QwTAsHww\",\"h_4\":\"Z7Bnl_VVOwSmfP9kuT0_Ub-5ic4cCVI4wCHArL1hU0M\",\"reversible\":\"p~Z7Bnl_VVOwSmfP9kuT0_Ub-5ic4cCVI4wCHArL1hU0MzTTbTCc7BcR53imT1qZgI\"}", + assertEquals("{\"hash\":\"kCGiAd9lGjEbWqbPlXo32fOl5YVmrasomP4QwTAsHww\",\"h_4\":\"Z7Bnl_VVOwSmfP9kuT0_Ub-5ic4cCVI4wCHArL1hU0M\",\"reversible\":\"p~Z7Bnl_VVOwSmfP9kuT0_Ub-5ic4cCVI4wCHArL1hU0MzTTbTCc7BcR53imT1qZgI\"}", f.map("asfa", sanitizer.getJsonConfiguration())); } diff --git a/java/core/src/test/java/co/worklytics/psoxy/storage/StorageHandlerTest.java b/java/core/src/test/java/co/worklytics/psoxy/storage/StorageHandlerTest.java index 2307215d3..da89e6942 100644 --- a/java/core/src/test/java/co/worklytics/psoxy/storage/StorageHandlerTest.java +++ b/java/core/src/test/java/co/worklytics/psoxy/storage/StorageHandlerTest.java @@ -217,9 +217,9 @@ public void applicableRules_multi(String path, boolean match) { public void process_compressOutput(boolean compress) { String data = "foo,bar\r\n1,2\r\n1,2\n1,2\n"; String expected = "foo,bar\r\n" + - "\"{\"\"scope\"\":\"\"hris\"\",\"\"hash\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\",2\r\n" + - "\"{\"\"scope\"\":\"\"hris\"\",\"\"hash\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\",2\r\n" + - "\"{\"\"scope\"\":\"\"hris\"\",\"\"hash\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\",2\r\n"; + "\"{\"\"hash\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\",2\r\n" + + "\"{\"\"hash\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\",2\r\n" + + "\"{\"\"hash\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\",2\r\n"; InputStream is = new ByteArrayInputStream(data.getBytes()); @@ -246,9 +246,9 @@ public void process_compressOutput(boolean compress) { public void process_compressInput() { String data = "foo,bar\r\n1,2\r\n1,2\n1,2\n"; String expected = "foo,bar\r\n" + - "\"{\"\"scope\"\":\"\"hris\"\",\"\"hash\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\",2\r\n" + - "\"{\"\"scope\"\":\"\"hris\"\",\"\"hash\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\",2\r\n" + - "\"{\"\"scope\"\":\"\"hris\"\",\"\"hash\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\",2\r\n"; + "\"{\"\"hash\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\",2\r\n" + + "\"{\"\"hash\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\",2\r\n" + + "\"{\"\"hash\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\",2\r\n"; InputStream is = new ByteArrayInputStream(compress(data.getBytes(StandardCharsets.UTF_8))); diff --git a/java/core/src/test/java/co/worklytics/psoxy/storage/impl/BulkDataSanitizerImplTest.java b/java/core/src/test/java/co/worklytics/psoxy/storage/impl/BulkDataSanitizerImplTest.java index aa54a6dbe..5c4016851 100644 --- a/java/core/src/test/java/co/worklytics/psoxy/storage/impl/BulkDataSanitizerImplTest.java +++ b/java/core/src/test/java/co/worklytics/psoxy/storage/impl/BulkDataSanitizerImplTest.java @@ -116,9 +116,9 @@ public void setup() { @SneakyThrows void handle_pseudonymize() { final String EXPECTED = "EMPLOYEE_ID,EMPLOYEE_EMAIL,DEPARTMENT,SNAPSHOT,MANAGER_ID,JOIN_DATE,LEAVE_DATE\n" + - "1,\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\",\"\"h_4\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",Engineering,2023-01-06,,2019-11-11,\n" + - "2,\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"workltyics.co\"\",\"\"hash\"\":\"\"al4JK5KlOIsneC2DM__P_HRYe28LWYTBSf3yWKGm5yQ\"\",\"\"h_4\"\":\"\"al4JK5KlOIsneC2DM__P_HRYe28LWYTBSf3yWKGm5yQ\"\"}\",Sales,2023-01-06,1,2020-01-01,\n" + - "3,\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"workltycis.co\"\",\"\"hash\"\":\"\"BlQB8Vk0VwdbdWTGAzBF.ote1357Ajr0fFcgFf72kdk\"\",\"\"h_4\"\":\"\"BlQB8Vk0VwdbdWTGAzBF-ote1357Ajr0fFcgFf72kdk\"\"}\",Engineering,2023-01-06,1,2019-10-06,2022-12-08\n" + + "1,\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\",\"\"h_4\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",Engineering,2023-01-06,,2019-11-11,\n" + + "2,\"{\"\"domain\"\":\"\"workltyics.co\"\",\"\"hash\"\":\"\"al4JK5KlOIsneC2DM__P_HRYe28LWYTBSf3yWKGm5yQ\"\",\"\"h_4\"\":\"\"al4JK5KlOIsneC2DM__P_HRYe28LWYTBSf3yWKGm5yQ\"\"}\",Sales,2023-01-06,1,2020-01-01,\n" + + "3,\"{\"\"domain\"\":\"\"workltycis.co\"\",\"\"hash\"\":\"\"BlQB8Vk0VwdbdWTGAzBF.ote1357Ajr0fFcgFf72kdk\"\",\"\"h_4\"\":\"\"BlQB8Vk0VwdbdWTGAzBF-ote1357Ajr0fFcgFf72kdk\"\"}\",Engineering,2023-01-06,1,2019-10-06,2022-12-08\n" + "4,,Engineering,2023-01-06,1,2018-06-03,\n"; //blank ID ColumnarRules rules = ColumnarRules.builder() @@ -139,9 +139,9 @@ void handle_pseudonymize() { @SneakyThrows void handle_pseudonymizeIfPresent(String caseVariant) { final String EXPECTED = "EMPLOYEE_ID,EMPLOYEE_EMAIL,DEPARTMENT,SNAPSHOT,MANAGER_ID,JOIN_DATE,LEAVE_DATE\n" + - "1,\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\",\"\"h_4\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",Engineering,2023-01-06,,2019-11-11,\n" + - "2,\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"workltyics.co\"\",\"\"hash\"\":\"\"al4JK5KlOIsneC2DM__P_HRYe28LWYTBSf3yWKGm5yQ\"\",\"\"h_4\"\":\"\"al4JK5KlOIsneC2DM__P_HRYe28LWYTBSf3yWKGm5yQ\"\"}\",Sales,2023-01-06,1,2020-01-01,\n" + - "3,\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"workltycis.co\"\",\"\"hash\"\":\"\"BlQB8Vk0VwdbdWTGAzBF.ote1357Ajr0fFcgFf72kdk\"\",\"\"h_4\"\":\"\"BlQB8Vk0VwdbdWTGAzBF-ote1357Ajr0fFcgFf72kdk\"\"}\",Engineering,2023-01-06,1,2019-10-06,2022-12-08\n" + + "1,\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",Engineering,2023-01-06,,2019-11-11,\n" + + "2,\"{\"\"domain\"\":\"\"workltyics.co\"\",\"\"hash\"\":\"\"al4JK5KlOIsneC2DM__P_HRYe28LWYTBSf3yWKGm5yQ\"\"}\",Sales,2023-01-06,1,2020-01-01,\n" + + "3,\"{\"\"domain\"\":\"\"workltycis.co\"\",\"\"hash\"\":\"\"BlQB8Vk0VwdbdWTGAzBF.ote1357Ajr0fFcgFf72kdk\"\"}\",Engineering,2023-01-06,1,2019-10-06,2022-12-08\n" + "4,,Engineering,2023-01-06,1,2018-06-03,\n"; //blank ID ColumnarRules rules = ColumnarRules.builder() @@ -162,9 +162,9 @@ void handle_pseudonymizeIfPresent(String caseVariant) { @SneakyThrows void handle_redaction() { final String EXPECTED = "EMPLOYEE_ID,EMPLOYEE_EMAIL,SNAPSHOT,MANAGER_ID,JOIN_DATE,LEAVE_DATE\n" + - "1,\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\",\"\"h_4\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",2023-01-06,,2019-11-11,\n" + - "2,\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"workltyics.co\"\",\"\"hash\"\":\"\"al4JK5KlOIsneC2DM__P_HRYe28LWYTBSf3yWKGm5yQ\"\",\"\"h_4\"\":\"\"al4JK5KlOIsneC2DM__P_HRYe28LWYTBSf3yWKGm5yQ\"\"}\",2023-01-06,1,2020-01-01,\n" + - "3,\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"workltycis.co\"\",\"\"hash\"\":\"\"BlQB8Vk0VwdbdWTGAzBF.ote1357Ajr0fFcgFf72kdk\"\",\"\"h_4\"\":\"\"BlQB8Vk0VwdbdWTGAzBF-ote1357Ajr0fFcgFf72kdk\"\"}\",2023-01-06,1,2019-10-06,2022-12-08\n" + + "1,\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\",\"\"h_4\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",2023-01-06,,2019-11-11,\n" + + "2,\"{\"\"domain\"\":\"\"workltyics.co\"\",\"\"hash\"\":\"\"al4JK5KlOIsneC2DM__P_HRYe28LWYTBSf3yWKGm5yQ\"\",\"\"h_4\"\":\"\"al4JK5KlOIsneC2DM__P_HRYe28LWYTBSf3yWKGm5yQ\"\"}\",2023-01-06,1,2020-01-01,\n" + + "3,\"{\"\"domain\"\":\"\"workltycis.co\"\",\"\"hash\"\":\"\"BlQB8Vk0VwdbdWTGAzBF.ote1357Ajr0fFcgFf72kdk\"\",\"\"h_4\"\":\"\"BlQB8Vk0VwdbdWTGAzBF-ote1357Ajr0fFcgFf72kdk\"\"}\",2023-01-06,1,2019-10-06,2022-12-08\n" + "4,,2023-01-06,1,2018-06-03,\n"; //blank ID ColumnarRules rules = ColumnarRules.builder() @@ -186,7 +186,7 @@ void handle_redaction() { @SneakyThrows void handle_cased() { final String EXPECTED = "EMPLOYEE_ID,AN EMAIL,SOME DEPARTMENT\n" + - "\"{\"\"scope\"\":\"\"hris\"\",\"\"hash\"\":\"\"SappwO4KZKGprqqUNruNreBD2BVR98nEM6NRCu3R2dM\"\",\"\"h_4\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\",\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\",\"\"h_4\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",Engineering\n"; + "\"{\"\"hash\"\":\"\"SappwO4KZKGprqqUNruNreBD2BVR98nEM6NRCu3R2dM\"\",\"\"h_4\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\",\"\"h_4\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",Engineering\n"; ColumnarRules rules = ColumnarRules.builder() .columnToPseudonymize("EMPLOYEE_ID") @@ -206,7 +206,7 @@ void handle_cased() { @SneakyThrows void handle_quotes() { final String EXPECTED = "EMPLOYEE_ID,EMAIL,DEPARTMENT\n" + - "\"{\"\"scope\"\":\"\"hris\"\",\"\"hash\"\":\"\"SappwO4KZKGprqqUNruNreBD2BVR98nEM6NRCu3R2dM\"\",\"\"h_4\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\",\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\",\"\"h_4\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",\",,,\"\n"; ColumnarRules rules = ColumnarRules.builder() + "\"{\"\"hash\"\":\"\"SappwO4KZKGprqqUNruNreBD2BVR98nEM6NRCu3R2dM\"\",\"\"h_4\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\",\"\"h_4\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",\",,,\"\n"; ColumnarRules rules = ColumnarRules.builder() .columnToPseudonymize("EMPLOYEE_ID") .columnToPseudonymize("EMAIL") .build(); @@ -221,8 +221,8 @@ void handle_quotes() { } final String EXPECTED_HRIS_DEFAULT_RULES = "EMPLOYEE_ID,employee_EMAIL,MANAGER_id,Manager_Email,JOIN_DATE,ROLE\n" + - "\"{\"\"scope\"\":\"\"hris\"\",\"\"hash\"\":\"\"SappwO4KZKGprqqUNruNreBD2BVR98nEM6NRCu3R2dM\"\",\"\"h_4\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\",\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\",\"\"h_4\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",\"{\"\"scope\"\":\"\"hris\"\",\"\"hash\"\":\"\"mfsaNYuCX__xvnRz4gJp_t0zrDTC5DkuCJvMkubugsI\"\",\"\"h_4\"\":\"\"-hN_i1M1DeMAicDVp6LhFgW9lH7r3_LbOpTlXYWpXVI\"\"}\",\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"TtDWXFAQxNE8O2w7DuMtEKzTSZXERuUVLCjmd9r6KQ4\"\",\"\"h_4\"\":\"\"TtDWXFAQxNE8O2w7DuMtEKzTSZXERuUVLCjmd9r6KQ4\"\"}\",2021-01-01,Accounting Manager\n" + - "\"{\"\"scope\"\":\"\"hris\"\",\"\"hash\"\":\"\"mfsaNYuCX__xvnRz4gJp_t0zrDTC5DkuCJvMkubugsI\"\",\"\"h_4\"\":\"\"-hN_i1M1DeMAicDVp6LhFgW9lH7r3_LbOpTlXYWpXVI\"\"}\",\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"TtDWXFAQxNE8O2w7DuMtEKzTSZXERuUVLCjmd9r6KQ4\"\",\"\"h_4\"\":\"\"TtDWXFAQxNE8O2w7DuMtEKzTSZXERuUVLCjmd9r6KQ4\"\"}\",,,2020-01-01,CEO\n"; + "\"{\"\"hash\"\":\"\"SappwO4KZKGprqqUNruNreBD2BVR98nEM6NRCu3R2dM\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",\"{\"\"hash\"\":\"\"mfsaNYuCX__xvnRz4gJp_t0zrDTC5DkuCJvMkubugsI\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"TtDWXFAQxNE8O2w7DuMtEKzTSZXERuUVLCjmd9r6KQ4\"\"}\",2021-01-01,Accounting Manager\n" + + "\"{\"\"hash\"\":\"\"mfsaNYuCX__xvnRz4gJp_t0zrDTC5DkuCJvMkubugsI\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"TtDWXFAQxNE8O2w7DuMtEKzTSZXERuUVLCjmd9r6KQ4\"\"}\",,,2020-01-01,CEO\n"; @ParameterizedTest @@ -255,8 +255,8 @@ void defaultRules(String exampleFile) { void defaultRules_padded() { final String EXPECTED = "EMPLOYEE_ID,employee_EMAIL,MANAGER_id,Manager_Email,JOIN_DATE,ROLE\n" + - "\"{\"\"scope\"\":\"\"hris\"\",\"\"hash\"\":\"\"dj_GUEgeG9cw1.2kXK_sN3FkRVTXVQ9JG2tvrbJiwV0\"\",\"\"h_4\"\":\"\"ni_o9pmj5bcNxQ_2cGsYSoOP-CtAUw8GyvT0xa8xSMA\"\"}\",\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\",\"\"h_4\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",\"{\"\"scope\"\":\"\"hris\"\",\"\"hash\"\":\"\"vgBsYd59dbOaOGs3QJUSmTS0iKB9hgrLzfeWvWdXAI0\"\",\"\"h_4\"\":\"\"fzLpsPTdf6VDPAD0PKU4GPQvKQpsaHn0OGKeOmSpQ-c\"\"}\",\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"TtDWXFAQxNE8O2w7DuMtEKzTSZXERuUVLCjmd9r6KQ4\"\",\"\"h_4\"\":\"\"TtDWXFAQxNE8O2w7DuMtEKzTSZXERuUVLCjmd9r6KQ4\"\"}\",2021-01-01,Accounting Manager\n" + - "\"{\"\"scope\"\":\"\"hris\"\",\"\"hash\"\":\"\"vgBsYd59dbOaOGs3QJUSmTS0iKB9hgrLzfeWvWdXAI0\"\",\"\"h_4\"\":\"\"fzLpsPTdf6VDPAD0PKU4GPQvKQpsaHn0OGKeOmSpQ-c\"\"}\",\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"TtDWXFAQxNE8O2w7DuMtEKzTSZXERuUVLCjmd9r6KQ4\"\",\"\"h_4\"\":\"\"TtDWXFAQxNE8O2w7DuMtEKzTSZXERuUVLCjmd9r6KQ4\"\"}\",,,2020-01-01,CEO\n"; + "\"{\"\"hash\"\":\"\"dj_GUEgeG9cw1.2kXK_sN3FkRVTXVQ9JG2tvrbJiwV0\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",\"{\"\"hash\"\":\"\"vgBsYd59dbOaOGs3QJUSmTS0iKB9hgrLzfeWvWdXAI0\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"TtDWXFAQxNE8O2w7DuMtEKzTSZXERuUVLCjmd9r6KQ4\"\"}\",2021-01-01,Accounting Manager\n" + + "\"{\"\"hash\"\":\"\"vgBsYd59dbOaOGs3QJUSmTS0iKB9hgrLzfeWvWdXAI0\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"TtDWXFAQxNE8O2w7DuMtEKzTSZXERuUVLCjmd9r6KQ4\"\"}\",,,2020-01-01,CEO\n"; //padded case (eg, 001 instead of 1 for employee_id), should result in different hashes assertNotEquals(EXPECTED, EXPECTED_HRIS_DEFAULT_RULES); @@ -282,7 +282,7 @@ void defaultRules_padded() { @SneakyThrows void validCaseInsensitiveAndTrimRules() { final String EXPECTED = "EMPLOYEE_ID,AN EMAIL,SOME DEPARTMENT\n" + - "\"{\"\"scope\"\":\"\"hris\"\",\"\"hash\"\":\"\"SappwO4KZKGprqqUNruNreBD2BVR98nEM6NRCu3R2dM\"\",\"\"h_4\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\",\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\",\"\"h_4\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",Engineering\n"; + "\"{\"\"hash\"\":\"\"SappwO4KZKGprqqUNruNreBD2BVR98nEM6NRCu3R2dM\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",Engineering\n"; ColumnarRules rules = ColumnarRules.builder() .columnToPseudonymize(" employee_id ") .columnToPseudonymize(" an EMAIL ") @@ -302,7 +302,7 @@ void validCaseInsensitiveAndTrimRules() { @SneakyThrows void handle_rename() { final String EXPECTED = "EMPLOYEE_ID,EMPLOYEE_EMAIL,DEPARTMENT\n" + - "\"{\"\"scope\"\":\"\"hris\"\",\"\"hash\"\":\"\"SappwO4KZKGprqqUNruNreBD2BVR98nEM6NRCu3R2dM\"\",\"\"h_4\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\",\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\",\"\"h_4\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",\",,,\"\n"; + "\"{\"\"hash\"\":\"\"SappwO4KZKGprqqUNruNreBD2BVR98nEM6NRCu3R2dM\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",\",,,\"\n"; ColumnarRules rules = ColumnarRules.builder() .columnToPseudonymize("EMPLOYEE_ID") .columnToPseudonymize("EMPLOYEE_EMAIL") @@ -436,9 +436,9 @@ void handle_duplicates_lookup_table_pre_0_4_48() { @Test void acmeExample() { final String EXPECTED = "StartDate,EndDate,Status,Progress,Finished,RecordedDate,ResponseId,LocationLatitude,LocationLongitude,Q1,Participant Email,Participant Unique Identifier,Q_DataPolicyViolations,Rating\n" + - "Start Date,End Date,Response Type,Progress,Finished,Recorded Date,Response ID,Location Latitude,Location Longitude,What is the meaning of life?,\"{\"\"scope\"\":\"\"hris\"\",\"\"hash\"\":\"\"qejD3BfohzeqJbqCcGMI2O0T-fn_KB24RjUbb8pjXHs\"\"}\",\"{\"\"scope\"\":\"\"hris\"\",\"\"hash\"\":\"\"ilQfXaLbu3b3sKjKeOzt83Uy92Yy3shc_dlq1ro60cU\"\"}\",Q_DataPolicyViolations,Rating\n" + - "\"{\"\"ImportId\"\":\"\"startDate\"\",\"\"timeZone\"\":\"\"America/Los_Angeles\"\"}\",\"{\"\"ImportId\"\":\"\"endDate\"\",\"\"timeZone\"\":\"\"America/Los_Angeles\"\"}\",\"{\"\"ImportId\"\":\"\"status\"\"}\",\"{\"\"ImportId\"\":\"\"progress\"\"}\",\"{\"\"ImportId\"\":\"\"finished\"\"}\",\"{\"\"ImportId\"\":\"\"recordedDate\"\",\"\"timeZone\"\":\"\"America/Los_Angeles\"\"}\",\"{\"\"ImportId\"\":\"\"_recordId\"\"}\",\"{\"\"ImportId\"\":\"\"locationLatitude\"\"}\",\"{\"\"ImportId\"\":\"\"locationLongitude\"\"}\",\"{\"\"ImportId\"\":\"\"QID1\"\"}\",\"{\"\"scope\"\":\"\"hris\"\",\"\"hash\"\":\"\"jw7v7rBpw41HFGKAH8Jp8yI2QlgO7ZYVerCJkco51Ic\"\"}\",\"{\"\"scope\"\":\"\"hris\"\",\"\"hash\"\":\"\"aM2l7o6Vm5Z1bRaYm_tjBfIolutVG-1k8s89UsME6LA\"\"}\",\"{\"\"ImportId\"\":\"\"Q_DataPolicyViolations\"\"}\",\"{\"\"ImportId\"\":\"\"Rating\"\"}\"\n" + - "9/1/22 7:50,9/1/22 7:51,32,100,1,9/1/22 7:51,R_1ie8z2GwkwzKG3h,,,3,\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"acme.COM\"\",\"\"hash\"\":\"\"PM3Oh15cS2rBp-kjSrOCpQvYFe8Wo3qLj1o5F3fuefI\"\"}\",\"{\"\"scope\"\":\"\"hris\"\",\"\"hash\"\":\"\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"\"}\",,5\n"; + "Start Date,End Date,Response Type,Progress,Finished,Recorded Date,Response ID,Location Latitude,Location Longitude,What is the meaning of life?,\"{\"\"hash\"\":\"\"qejD3BfohzeqJbqCcGMI2O0T-fn_KB24RjUbb8pjXHs\"\"}\",\"{\"\"hash\"\":\"\"ilQfXaLbu3b3sKjKeOzt83Uy92Yy3shc_dlq1ro60cU\"\"}\",Q_DataPolicyViolations,Rating\n" + + "\"{\"\"ImportId\"\":\"\"startDate\"\",\"\"timeZone\"\":\"\"America/Los_Angeles\"\"}\",\"{\"\"ImportId\"\":\"\"endDate\"\",\"\"timeZone\"\":\"\"America/Los_Angeles\"\"}\",\"{\"\"ImportId\"\":\"\"status\"\"}\",\"{\"\"ImportId\"\":\"\"progress\"\"}\",\"{\"\"ImportId\"\":\"\"finished\"\"}\",\"{\"\"ImportId\"\":\"\"recordedDate\"\",\"\"timeZone\"\":\"\"America/Los_Angeles\"\"}\",\"{\"\"ImportId\"\":\"\"_recordId\"\"}\",\"{\"\"ImportId\"\":\"\"locationLatitude\"\"}\",\"{\"\"ImportId\"\":\"\"locationLongitude\"\"}\",\"{\"\"ImportId\"\":\"\"QID1\"\"}\",\"{\"\"hash\"\":\"\"jw7v7rBpw41HFGKAH8Jp8yI2QlgO7ZYVerCJkco51Ic\"\"}\",\"{\"\"hash\"\":\"\"aM2l7o6Vm5Z1bRaYm_tjBfIolutVG-1k8s89UsME6LA\"\"}\",\"{\"\"ImportId\"\":\"\"Q_DataPolicyViolations\"\"}\",\"{\"\"ImportId\"\":\"\"Rating\"\"}\"\n" + + "9/1/22 7:50,9/1/22 7:51,32,100,1,9/1/22 7:51,R_1ie8z2GwkwzKG3h,,,3,\"{\"\"domain\"\":\"\"acme.COM\"\",\"\"hash\"\":\"\"PM3Oh15cS2rBp-kjSrOCpQvYFe8Wo3qLj1o5F3fuefI\"\"}\",\"{\"\"hash\"\":\"\"5NL5SaQBwE6c0L1BDjHW-BtBOXQVH8RYwY0tGGw3khk\"\"}\",,5\n"; ColumnarRules rules = ColumnarRules.builder() .columnToPseudonymize("Participant Email") @@ -473,7 +473,7 @@ void acmeExample() { @SneakyThrows void handle_inclusion() { final String EXPECTED = "EMPLOYEE_ID\n" + - "\"{\"\"scope\"\":\"\"hris\"\",\"\"hash\"\":\"\"SappwO4KZKGprqqUNruNreBD2BVR98nEM6NRCu3R2dM\"\",\"\"h_4\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\"\n"; + "\"{\"\"hash\"\":\"\"SappwO4KZKGprqqUNruNreBD2BVR98nEM6NRCu3R2dM\"\",\"\"h_4\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\"\n"; ColumnarRules rules = ColumnarRules.builder() .columnToPseudonymize("EMPLOYEE_ID") .columnsToInclude(Lists.newArrayList("EMPLOYEE_ID")) @@ -494,10 +494,10 @@ void handle_inclusion() { @Test void shuffle() { final String EXPECTED = "EMPLOYEE_ID,EMPLOYEE_EMAIL,DEPARTMENT,SNAPSHOT,MANAGER_ID,JOIN_DATE,LEAVE_DATE\n" + - "2,\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"workltyics.co\"\",\"\"hash\"\":\"\"al4JK5KlOIsneC2DM__P_HRYe28LWYTBSf3yWKGm5yQ\"\",\"\"h_4\"\":\"\"al4JK5KlOIsneC2DM__P_HRYe28LWYTBSf3yWKGm5yQ\"\"}\",Sales,2023-01-06,1,2020-01-01,\n" + - "1,\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\",\"\"h_4\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",Engineering,2023-01-06,,2019-11-11,\n" + + "2,\"{\"\"domain\"\":\"\"workltyics.co\"\",\"\"hash\"\":\"\"al4JK5KlOIsneC2DM__P_HRYe28LWYTBSf3yWKGm5yQ\"\"}\",Sales,2023-01-06,1,2020-01-01,\n" + + "1,\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",Engineering,2023-01-06,,2019-11-11,\n" + "4,,Engineering,2023-01-06,1,2018-06-03,\n" + - "3,\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"workltycis.co\"\",\"\"hash\"\":\"\"BlQB8Vk0VwdbdWTGAzBF.ote1357Ajr0fFcgFf72kdk\"\",\"\"h_4\"\":\"\"BlQB8Vk0VwdbdWTGAzBF-ote1357Ajr0fFcgFf72kdk\"\"}\",Engineering,2023-01-06,1,2019-10-06,2022-12-08\n" + "3,\"{\"\"domain\"\":\"\"workltycis.co\"\",\"\"hash\"\":\"\"BlQB8Vk0VwdbdWTGAzBF.ote1357Ajr0fFcgFf72kdk\"\"}\",Engineering,2023-01-06,1,2019-10-06,2022-12-08\n" ; //blank ID ColumnarRules rules = ColumnarRules.builder() @@ -558,10 +558,10 @@ void pre_v0_4_30_bulk_pseudonym_URL_SAFE_TOKEN_ENCODING(String identifier) { void transform_ghusername() { final String EXPECTED = "EMPLOYEE_ID,EMPLOYEE_EMAIL,DEPARTMENT,SNAPSHOT,MANAGER_ID,JOIN_DATE,LEAVE_DATE,GITHUB_USERNAME\n" + - "2,bob@workltyics.co,Sales,2023-01-06,1,2020-01-01,,\"{\"\"scope\"\":\"\"github\"\",\"\"hash\"\":\"\"Y4s0esk6oY5kfgIH2Pvdgr0NVqpKyy7fU0IVbV01xTw\"\",\"\"h_4\"\":\"\"hgs2zOvvnp8YG1adeeZCwUmAI_BUk5CFTPF_tca6OmQ\"\"}\"\n" + - "1,alice@worklytics.co,Engineering,2023-01-06,,2019-11-11,,\"{\"\"scope\"\":\"\"github\"\",\"\"hash\"\":\"\"kwv9cWxo7TDgrt1qCegIJv7rA84s_895L_wG_y8hYjA\"\",\"\"h_4\"\":\"\"sbIXAryuJzPz0dxRh4swzuxCY9_ZetgbAQlcrI-W30g\"\"}\"\n" + + "2,bob@workltyics.co,Sales,2023-01-06,1,2020-01-01,,\"{\"\"hash\"\":\"\"Y4s0esk6oY5kfgIH2Pvdgr0NVqpKyy7fU0IVbV01xTw\"\"\"\n" + + "1,alice@worklytics.co,Engineering,2023-01-06,,2019-11-11,,\"{\"\"hash\"\":\"\"kwv9cWxo7TDgrt1qCegIJv7rA84s_895L_wG_y8hYjA\"\"}\"\n" + "4,,Engineering,2023-01-06,1,2018-06-03,,\n" + - "3,charles@workltycis.co,Engineering,2023-01-06,1,2019-10-06,2022-12-08,\"{\"\"scope\"\":\"\"github\"\",\"\"hash\"\":\"\"KqWJXpC.g25eQzR80kCS3RVj4L4JNngo7vFwructvNU\"\",\"\"h_4\"\":\"\"1RaWPpeCqO4wTAc849d9KY41PEXdkHcxJ32ifrLzsjQ\"\"}\"\n"; + "3,charles@workltycis.co,Engineering,2023-01-06,1,2019-10-06,2022-12-08,\"{\"\"hash\"\":\"\"KqWJXpC.g25eQzR80kCS3RVj4L4JNngo7vFwructvNU\"\"}\"\n"; ColumnarRules rules = ColumnarRules.builder() .fieldsToTransform(Map.of("EMPLOYEE_EMAIL", FieldTransformPipeline.builder() .newName("GITHUB_USERNAME") @@ -617,10 +617,10 @@ void transform_complex_ghusername() { "4,"; final String EXPECTED = "EMPLOYEE_ID,EMPLOYEE_EMAIL,GITHUB_USERNAME" + CRLF + - "2,bob.smith@worklytics.co,\"{\"\"scope\"\":\"\"github\"\",\"\"hash\"\":\"\"vm45r.JHXUgXcP6.mzVLxKX4uyFbgqTIecTPqs_ibdI\"\",\"\"h_4\"\":\"\"3tfnePQDgDoBZxb6c04tqlmpKSfGyOPsUANSLMUEuYU\"\"}\"" + CRLF + - "1,alice@worklytics.co,\"{\"\"scope\"\":\"\"github\"\",\"\"hash\"\":\"\"fEFRnzBKYdSKBRoK_I6P4U58TEw79SNGl8lS4Dh4ANY\"\",\"\"h_4\"\":\"\"3YAoyBkqpKrO4rk5ISA0dZSABykOBC7pEMmkL1L0HK4\"\"}\"" + CRLF + + "2,bob.smith@worklytics.co,\"{\"\"hash\"\":\"\"vm45r.JHXUgXcP6.mzVLxKX4uyFbgqTIecTPqs_ibdI\"\"}\"" + CRLF + + "1,alice@worklytics.co,\"{\"\"hash\"\":\"\"fEFRnzBKYdSKBRoK_I6P4U58TEw79SNGl8lS4Dh4ANY\"\"}\"" + CRLF + "4,," + CRLF + - "3,charles.dickens@worklytics.co,\"{\"\"scope\"\":\"\"github\"\",\"\"hash\"\":\"\"LbiVG96eyVeyac3b4CQ1KviNHVK3UQtjS6spDcySBzg\"\",\"\"h_4\"\":\"\"fTYkjBMftiSOMolXYIZISI2w__u5mJ7TZrTQtifAD-Q\"\"}\"" + CRLF; + "3,charles.dickens@worklytics.co,\"{\"\"hash\"\":\"\"LbiVG96eyVeyac3b4CQ1KviNHVK3UQtjS6spDcySBzg\"\"}\"" + CRLF; ColumnarRules rules = ColumnarRules.builder() .fieldsToTransform(Map.of("EMPLOYEE_EMAIL", FieldTransformPipeline.builder() From 832af8c42c30b5fc76ab6b60b8322fe1ceeae5c6 Mon Sep 17 00:00:00 2001 From: Erik Schultink Date: Tue, 19 Nov 2024 13:53:49 -0800 Subject: [PATCH 04/15] fix legacy hash test cases --- .../psoxy/impl/RESTApiSanitizerImplTest.java | 9 ++- .../impl/BulkDataSanitizerImplTest.java | 66 ++++++++----------- 2 files changed, 32 insertions(+), 43 deletions(-) diff --git a/java/core/src/test/java/co/worklytics/psoxy/impl/RESTApiSanitizerImplTest.java b/java/core/src/test/java/co/worklytics/psoxy/impl/RESTApiSanitizerImplTest.java index ef57c66d3..feca98f0e 100644 --- a/java/core/src/test/java/co/worklytics/psoxy/impl/RESTApiSanitizerImplTest.java +++ b/java/core/src/test/java/co/worklytics/psoxy/impl/RESTApiSanitizerImplTest.java @@ -293,7 +293,7 @@ void pseudonymizeWithReversalKey() { //NOTE: this is a LEGACY case MapFunction f = sanitizer.getPseudonymize(Transform.Pseudonymize.builder().includeReversible(true).build()); - assertEquals("{\"hash\":\"kCGiAd9lGjEbWqbPlXo32fOl5YVmrasomP4QwTAsHww\",\"h_4\":\"Z7Bnl_VVOwSmfP9kuT0_Ub-5ic4cCVI4wCHArL1hU0M\",\"reversible\":\"p~Z7Bnl_VVOwSmfP9kuT0_Ub-5ic4cCVI4wCHArL1hU0MzTTbTCc7BcR53imT1qZgI\"}", + assertEquals("{\"hash\":\"Z7Bnl_VVOwSmfP9kuT0_Ub-5ic4cCVI4wCHArL1hU0M\",\"reversible\":\"p~Z7Bnl_VVOwSmfP9kuT0_Ub-5ic4cCVI4wCHArL1hU0MzTTbTCc7BcR53imT1qZgI\"}", f.map("asfa", sanitizer.getJsonConfiguration())); } @@ -631,14 +631,13 @@ void pseudonymizeWithRegexMatches(String input) { @CsvSource(value = { - "something,.*,t~Pym88cXj0AbPDFzkwBY_4jRh8Tq8KpfLNNwE3PTolQ4", + "something,.*,t~EN_O0yRLJp7bRnw6HrbdPMLul_uqairwpevQ08HtEn0", "something,blah:.*thing,", // no match, should redact - "blah:something,blah:.*thing,t~fZJVpgu6vQk2f6Q8G9IXNysNnxwwJO4cd1zWOZV.Zcg", - "blah:something,blah:(.*),blah:t~Pym88cXj0AbPDFzkwBY_4jRh8Tq8KpfLNNwE3PTolQ4", + "blah:something,blah:.*thing,t~ltpmWUv-gqwJTPjfusJMo8Cd45xhqDRQx6REW-gS2CU", + "blah:something,blah:(.*),blah:t~EN_O0yRLJp7bRnw6HrbdPMLul_uqairwpevQ08HtEn0", }) @ParameterizedTest public void pseudonymizeWithRegexMatches_nonMatchingRedacted(String input, String regex, String expected) { - //NOTE: this is a LEGACY case MapFunction transform = sanitizer.getPseudonymizeRegexMatches(Transform.PseudonymizeRegexMatches.builder() .regex(regex) .includeReversible(false) diff --git a/java/core/src/test/java/co/worklytics/psoxy/storage/impl/BulkDataSanitizerImplTest.java b/java/core/src/test/java/co/worklytics/psoxy/storage/impl/BulkDataSanitizerImplTest.java index 5c4016851..56ec45e31 100644 --- a/java/core/src/test/java/co/worklytics/psoxy/storage/impl/BulkDataSanitizerImplTest.java +++ b/java/core/src/test/java/co/worklytics/psoxy/storage/impl/BulkDataSanitizerImplTest.java @@ -116,9 +116,9 @@ public void setup() { @SneakyThrows void handle_pseudonymize() { final String EXPECTED = "EMPLOYEE_ID,EMPLOYEE_EMAIL,DEPARTMENT,SNAPSHOT,MANAGER_ID,JOIN_DATE,LEAVE_DATE\n" + - "1,\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\",\"\"h_4\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",Engineering,2023-01-06,,2019-11-11,\n" + - "2,\"{\"\"domain\"\":\"\"workltyics.co\"\",\"\"hash\"\":\"\"al4JK5KlOIsneC2DM__P_HRYe28LWYTBSf3yWKGm5yQ\"\",\"\"h_4\"\":\"\"al4JK5KlOIsneC2DM__P_HRYe28LWYTBSf3yWKGm5yQ\"\"}\",Sales,2023-01-06,1,2020-01-01,\n" + - "3,\"{\"\"domain\"\":\"\"workltycis.co\"\",\"\"hash\"\":\"\"BlQB8Vk0VwdbdWTGAzBF.ote1357Ajr0fFcgFf72kdk\"\",\"\"h_4\"\":\"\"BlQB8Vk0VwdbdWTGAzBF-ote1357Ajr0fFcgFf72kdk\"\"}\",Engineering,2023-01-06,1,2019-10-06,2022-12-08\n" + + "1,\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",Engineering,2023-01-06,,2019-11-11,\n" + + "2,\"{\"\"domain\"\":\"\"workltyics.co\"\",\"\"hash\"\":\"\"al4JK5KlOIsneC2DM__P_HRYe28LWYTBSf3yWKGm5yQ\"\"}\",Sales,2023-01-06,1,2020-01-01,\n" + + "3,\"{\"\"domain\"\":\"\"workltycis.co\"\",\"\"hash\"\":\"\"BlQB8Vk0VwdbdWTGAzBF.ote1357Ajr0fFcgFf72kdk\"\"}\",Engineering,2023-01-06,1,2019-10-06,2022-12-08\n" + "4,,Engineering,2023-01-06,1,2018-06-03,\n"; //blank ID ColumnarRules rules = ColumnarRules.builder() @@ -162,9 +162,9 @@ void handle_pseudonymizeIfPresent(String caseVariant) { @SneakyThrows void handle_redaction() { final String EXPECTED = "EMPLOYEE_ID,EMPLOYEE_EMAIL,SNAPSHOT,MANAGER_ID,JOIN_DATE,LEAVE_DATE\n" + - "1,\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\",\"\"h_4\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",2023-01-06,,2019-11-11,\n" + - "2,\"{\"\"domain\"\":\"\"workltyics.co\"\",\"\"hash\"\":\"\"al4JK5KlOIsneC2DM__P_HRYe28LWYTBSf3yWKGm5yQ\"\",\"\"h_4\"\":\"\"al4JK5KlOIsneC2DM__P_HRYe28LWYTBSf3yWKGm5yQ\"\"}\",2023-01-06,1,2020-01-01,\n" + - "3,\"{\"\"domain\"\":\"\"workltycis.co\"\",\"\"hash\"\":\"\"BlQB8Vk0VwdbdWTGAzBF.ote1357Ajr0fFcgFf72kdk\"\",\"\"h_4\"\":\"\"BlQB8Vk0VwdbdWTGAzBF-ote1357Ajr0fFcgFf72kdk\"\"}\",2023-01-06,1,2019-10-06,2022-12-08\n" + + "1,\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",2023-01-06,,2019-11-11,\n" + + "2,\"{\"\"domain\"\":\"\"workltyics.co\"\",\"\"hash\"\":\"\"al4JK5KlOIsneC2DM__P_HRYe28LWYTBSf3yWKGm5yQ\"\"}\",2023-01-06,1,2020-01-01,\n" + + "3,\"{\"\"domain\"\":\"\"workltycis.co\"\",\"\"hash\"\":\"\"BlQB8Vk0VwdbdWTGAzBF.ote1357Ajr0fFcgFf72kdk\"\"}\",2023-01-06,1,2019-10-06,2022-12-08\n" + "4,,2023-01-06,1,2018-06-03,\n"; //blank ID ColumnarRules rules = ColumnarRules.builder() @@ -186,7 +186,7 @@ void handle_redaction() { @SneakyThrows void handle_cased() { final String EXPECTED = "EMPLOYEE_ID,AN EMAIL,SOME DEPARTMENT\n" + - "\"{\"\"hash\"\":\"\"SappwO4KZKGprqqUNruNreBD2BVR98nEM6NRCu3R2dM\"\",\"\"h_4\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\",\"\"h_4\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",Engineering\n"; + "\"{\"\"hash\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",Engineering\n"; ColumnarRules rules = ColumnarRules.builder() .columnToPseudonymize("EMPLOYEE_ID") @@ -199,6 +199,8 @@ void handle_cased() { StringWriter out = new StringWriter()) { columnarFileSanitizerImpl.sanitize(in, out, pseudonymizer); assertEquals(EXPECTED, out.toString()); + + assertTrue(out.toString().contains(pseudonymizer.pseudonymize("1").getHash())); } } @@ -206,7 +208,7 @@ void handle_cased() { @SneakyThrows void handle_quotes() { final String EXPECTED = "EMPLOYEE_ID,EMAIL,DEPARTMENT\n" + - "\"{\"\"hash\"\":\"\"SappwO4KZKGprqqUNruNreBD2BVR98nEM6NRCu3R2dM\"\",\"\"h_4\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\",\"\"h_4\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",\",,,\"\n"; ColumnarRules rules = ColumnarRules.builder() + "\"{\"\"hash\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",\",,,\"\n"; ColumnarRules rules = ColumnarRules.builder() .columnToPseudonymize("EMPLOYEE_ID") .columnToPseudonymize("EMAIL") .build(); @@ -217,12 +219,13 @@ void handle_quotes() { StringWriter out = new StringWriter()) { columnarFileSanitizerImpl.sanitize(in, out, pseudonymizer); assertEquals(EXPECTED, out.toString()); + assertTrue(out.toString().contains(pseudonymizer.pseudonymize("1").getHash())); } } final String EXPECTED_HRIS_DEFAULT_RULES = "EMPLOYEE_ID,employee_EMAIL,MANAGER_id,Manager_Email,JOIN_DATE,ROLE\n" + - "\"{\"\"hash\"\":\"\"SappwO4KZKGprqqUNruNreBD2BVR98nEM6NRCu3R2dM\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",\"{\"\"hash\"\":\"\"mfsaNYuCX__xvnRz4gJp_t0zrDTC5DkuCJvMkubugsI\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"TtDWXFAQxNE8O2w7DuMtEKzTSZXERuUVLCjmd9r6KQ4\"\"}\",2021-01-01,Accounting Manager\n" + - "\"{\"\"hash\"\":\"\"mfsaNYuCX__xvnRz4gJp_t0zrDTC5DkuCJvMkubugsI\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"TtDWXFAQxNE8O2w7DuMtEKzTSZXERuUVLCjmd9r6KQ4\"\"}\",,,2020-01-01,CEO\n"; + "\"{\"\"hash\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",\"{\"\"hash\"\":\"\"-hN_i1M1DeMAicDVp6LhFgW9lH7r3_LbOpTlXYWpXVI\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"TtDWXFAQxNE8O2w7DuMtEKzTSZXERuUVLCjmd9r6KQ4\"\"}\",2021-01-01,Accounting Manager\n" + + "\"{\"\"hash\"\":\"\"-hN_i1M1DeMAicDVp6LhFgW9lH7r3_LbOpTlXYWpXVI\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"TtDWXFAQxNE8O2w7DuMtEKzTSZXERuUVLCjmd9r6KQ4\"\"}\",,,2020-01-01,CEO\n"; @ParameterizedTest @@ -255,8 +258,8 @@ void defaultRules(String exampleFile) { void defaultRules_padded() { final String EXPECTED = "EMPLOYEE_ID,employee_EMAIL,MANAGER_id,Manager_Email,JOIN_DATE,ROLE\n" + - "\"{\"\"hash\"\":\"\"dj_GUEgeG9cw1.2kXK_sN3FkRVTXVQ9JG2tvrbJiwV0\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",\"{\"\"hash\"\":\"\"vgBsYd59dbOaOGs3QJUSmTS0iKB9hgrLzfeWvWdXAI0\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"TtDWXFAQxNE8O2w7DuMtEKzTSZXERuUVLCjmd9r6KQ4\"\"}\",2021-01-01,Accounting Manager\n" + - "\"{\"\"hash\"\":\"\"vgBsYd59dbOaOGs3QJUSmTS0iKB9hgrLzfeWvWdXAI0\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"TtDWXFAQxNE8O2w7DuMtEKzTSZXERuUVLCjmd9r6KQ4\"\"}\",,,2020-01-01,CEO\n"; + "\"{\"\"hash\"\":\"\"ni_o9pmj5bcNxQ_2cGsYSoOP-CtAUw8GyvT0xa8xSMA\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",\"{\"\"hash\"\":\"\"fzLpsPTdf6VDPAD0PKU4GPQvKQpsaHn0OGKeOmSpQ-c\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"TtDWXFAQxNE8O2w7DuMtEKzTSZXERuUVLCjmd9r6KQ4\"\"}\",2021-01-01,Accounting Manager\n" + + "\"{\"\"hash\"\":\"\"fzLpsPTdf6VDPAD0PKU4GPQvKQpsaHn0OGKeOmSpQ-c\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"TtDWXFAQxNE8O2w7DuMtEKzTSZXERuUVLCjmd9r6KQ4\"\"}\",,,2020-01-01,CEO\n"; //padded case (eg, 001 instead of 1 for employee_id), should result in different hashes assertNotEquals(EXPECTED, EXPECTED_HRIS_DEFAULT_RULES); @@ -282,7 +285,7 @@ void defaultRules_padded() { @SneakyThrows void validCaseInsensitiveAndTrimRules() { final String EXPECTED = "EMPLOYEE_ID,AN EMAIL,SOME DEPARTMENT\n" + - "\"{\"\"hash\"\":\"\"SappwO4KZKGprqqUNruNreBD2BVR98nEM6NRCu3R2dM\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",Engineering\n"; + "\"{\"\"hash\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",Engineering\n"; ColumnarRules rules = ColumnarRules.builder() .columnToPseudonymize(" employee_id ") .columnToPseudonymize(" an EMAIL ") @@ -302,7 +305,7 @@ void validCaseInsensitiveAndTrimRules() { @SneakyThrows void handle_rename() { final String EXPECTED = "EMPLOYEE_ID,EMPLOYEE_EMAIL,DEPARTMENT\n" + - "\"{\"\"hash\"\":\"\"SappwO4KZKGprqqUNruNreBD2BVR98nEM6NRCu3R2dM\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",\",,,\"\n"; + "\"{\"\"hash\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",\",,,\"\n"; ColumnarRules rules = ColumnarRules.builder() .columnToPseudonymize("EMPLOYEE_ID") .columnToPseudonymize("EMPLOYEE_EMAIL") @@ -473,7 +476,7 @@ void acmeExample() { @SneakyThrows void handle_inclusion() { final String EXPECTED = "EMPLOYEE_ID\n" + - "\"{\"\"hash\"\":\"\"SappwO4KZKGprqqUNruNreBD2BVR98nEM6NRCu3R2dM\"\",\"\"h_4\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\"\n"; + "\"{\"\"hash\"\":\"\"0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc\"\"}\"\n"; ColumnarRules rules = ColumnarRules.builder() .columnToPseudonymize("EMPLOYEE_ID") .columnsToInclude(Lists.newArrayList("EMPLOYEE_ID")) @@ -558,10 +561,10 @@ void pre_v0_4_30_bulk_pseudonym_URL_SAFE_TOKEN_ENCODING(String identifier) { void transform_ghusername() { final String EXPECTED = "EMPLOYEE_ID,EMPLOYEE_EMAIL,DEPARTMENT,SNAPSHOT,MANAGER_ID,JOIN_DATE,LEAVE_DATE,GITHUB_USERNAME\n" + - "2,bob@workltyics.co,Sales,2023-01-06,1,2020-01-01,,\"{\"\"hash\"\":\"\"Y4s0esk6oY5kfgIH2Pvdgr0NVqpKyy7fU0IVbV01xTw\"\"\"\n" + - "1,alice@worklytics.co,Engineering,2023-01-06,,2019-11-11,,\"{\"\"hash\"\":\"\"kwv9cWxo7TDgrt1qCegIJv7rA84s_895L_wG_y8hYjA\"\"}\"\n" + + "2,bob@workltyics.co,Sales,2023-01-06,1,2020-01-01,,\"{\"\"hash\"\":\"\"hgs2zOvvnp8YG1adeeZCwUmAI_BUk5CFTPF_tca6OmQ\"\"}\"\n" + + "1,alice@worklytics.co,Engineering,2023-01-06,,2019-11-11,,\"{\"\"hash\"\":\"\"sbIXAryuJzPz0dxRh4swzuxCY9_ZetgbAQlcrI-W30g\"\"}\"\n" + "4,,Engineering,2023-01-06,1,2018-06-03,,\n" + - "3,charles@workltycis.co,Engineering,2023-01-06,1,2019-10-06,2022-12-08,\"{\"\"hash\"\":\"\"KqWJXpC.g25eQzR80kCS3RVj4L4JNngo7vFwructvNU\"\"}\"\n"; + "3,charles@workltycis.co,Engineering,2023-01-06,1,2019-10-06,2022-12-08,\"{\"\"hash\"\":\"\"1RaWPpeCqO4wTAc849d9KY41PEXdkHcxJ32ifrLzsjQ\"\"}\"\n"; ColumnarRules rules = ColumnarRules.builder() .fieldsToTransform(Map.of("EMPLOYEE_EMAIL", FieldTransformPipeline.builder() .newName("GITHUB_USERNAME") @@ -617,10 +620,10 @@ void transform_complex_ghusername() { "4,"; final String EXPECTED = "EMPLOYEE_ID,EMPLOYEE_EMAIL,GITHUB_USERNAME" + CRLF + - "2,bob.smith@worklytics.co,\"{\"\"hash\"\":\"\"vm45r.JHXUgXcP6.mzVLxKX4uyFbgqTIecTPqs_ibdI\"\"}\"" + CRLF + - "1,alice@worklytics.co,\"{\"\"hash\"\":\"\"fEFRnzBKYdSKBRoK_I6P4U58TEw79SNGl8lS4Dh4ANY\"\"}\"" + CRLF + + "2,bob.smith@worklytics.co,\"{\"\"hash\"\":\"\"3tfnePQDgDoBZxb6c04tqlmpKSfGyOPsUANSLMUEuYU\"\"}\"" + CRLF + + "1,alice@worklytics.co,\"{\"\"hash\"\":\"\"3YAoyBkqpKrO4rk5ISA0dZSABykOBC7pEMmkL1L0HK4\"\"}\"" + CRLF + "4,," + CRLF + - "3,charles.dickens@worklytics.co,\"{\"\"hash\"\":\"\"LbiVG96eyVeyac3b4CQ1KviNHVK3UQtjS6spDcySBzg\"\"}\"" + CRLF; + "3,charles.dickens@worklytics.co,\"{\"\"hash\"\":\"\"fTYkjBMftiSOMolXYIZISI2w__u5mJ7TZrTQtifAD-Q\"\"}\"" + CRLF; ColumnarRules rules = ColumnarRules.builder() .fieldsToTransform(Map.of("EMPLOYEE_EMAIL", FieldTransformPipeline.builder() @@ -648,28 +651,15 @@ void transform_complex_ghusername() { resultString = out.toString(); assertEquals(EXPECTED, resultString); - PseudonymizerImpl githubPseudonymizer = pseudonymizerImplFactory.create(Pseudonymizer.ConfigurationOptions.builder() - .pseudonymizationSalt(pseudonymizer.getOptions().getPseudonymizationSalt()) - .build()); - - // plain 'usernames' hash shouldn't be there either - assertFalse(resultString.contains(pseudonymizer.pseudonymize("alice").getHash())); - assertFalse(resultString.contains(pseudonymizer.pseudonymize("bob-smith").getHash())); - assertFalse(resultString.contains(pseudonymizer.pseudonymize("bob.smith").getHash())); - assertFalse(resultString.contains(pseudonymizer.pseudonymize("charles-dickens").getHash())); - assertFalse(resultString.contains(pseudonymizer.pseudonymize("charles.dickens").getHash())); try (CSVParser parser = CSVParser.parse(resultString, CSVFormat.DEFAULT.withFirstRecordAsHeader())) { List records = parser.getRecords(); - assertTrue(records.get(0).get("GITHUB_USERNAME").contains(githubPseudonymizer.pseudonymize("bob-smith").getHash())); - assertTrue(records.get(1).get("GITHUB_USERNAME").contains(githubPseudonymizer.pseudonymize("alice").getHash())); + assertTrue(records.get(0).get("GITHUB_USERNAME").contains(pseudonymizer.pseudonymize("bob-smith").getHash())); + assertTrue(records.get(1).get("GITHUB_USERNAME").contains(pseudonymizer.pseudonymize("alice").getHash())); assertTrue(StringUtils.isBlank(records.get(2).get("GITHUB_USERNAME"))); - assertTrue(records.get(3).get("GITHUB_USERNAME").contains(githubPseudonymizer.pseudonymize("charles-dickens").getHash())); + assertTrue(records.get(3).get("GITHUB_USERNAME").contains(pseudonymizer.pseudonymize("charles-dickens").getHash())); } - } - - } @@ -752,7 +742,7 @@ void handle_null_transformations() { final String EXPECTED = "EMPLOYEE_ID,DEPARTMENT,SNAPSHOT,MANAGER_ID,JOIN_DATE,LEAVE_DATE,EMPLOYEE_ID_ORIG\n" + ",,2023-01-06,,2019-11-11,,\n" + - "t~mfsaNYuCX__xvnRz4gJp_t0zrDTC5DkuCJvMkubugsI,Sales,2023-01-06,t~SappwO4KZKGprqqUNruNreBD2BVR98nEM6NRCu3R2dM,2020-01-01,,2\n"; + "t~-hN_i1M1DeMAicDVp6LhFgW9lH7r3_LbOpTlXYWpXVI,Sales,2023-01-06,t~0zPKqEd-CtbCLB1ZSwX6Zo7uAWUvkpfHGzv9-cuYwZc,2020-01-01,,2\n"; ColumnarRules rules = ColumnarRules.builder() .pseudonymFormat(PseudonymEncoder.Implementations.URL_SAFE_TOKEN) From 0a0a6b20760bea83c48c7cac15039a10467a8855 Mon Sep 17 00:00:00 2001 From: Erik Schultink Date: Tue, 19 Nov 2024 13:55:17 -0800 Subject: [PATCH 05/15] fix format; - in place of . --- .../psoxy/storage/impl/BulkDataSanitizerImplTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/java/core/src/test/java/co/worklytics/psoxy/storage/impl/BulkDataSanitizerImplTest.java b/java/core/src/test/java/co/worklytics/psoxy/storage/impl/BulkDataSanitizerImplTest.java index 56ec45e31..ee9c35c4f 100644 --- a/java/core/src/test/java/co/worklytics/psoxy/storage/impl/BulkDataSanitizerImplTest.java +++ b/java/core/src/test/java/co/worklytics/psoxy/storage/impl/BulkDataSanitizerImplTest.java @@ -118,7 +118,7 @@ void handle_pseudonymize() { final String EXPECTED = "EMPLOYEE_ID,EMPLOYEE_EMAIL,DEPARTMENT,SNAPSHOT,MANAGER_ID,JOIN_DATE,LEAVE_DATE\n" + "1,\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",Engineering,2023-01-06,,2019-11-11,\n" + "2,\"{\"\"domain\"\":\"\"workltyics.co\"\",\"\"hash\"\":\"\"al4JK5KlOIsneC2DM__P_HRYe28LWYTBSf3yWKGm5yQ\"\"}\",Sales,2023-01-06,1,2020-01-01,\n" + - "3,\"{\"\"domain\"\":\"\"workltycis.co\"\",\"\"hash\"\":\"\"BlQB8Vk0VwdbdWTGAzBF.ote1357Ajr0fFcgFf72kdk\"\"}\",Engineering,2023-01-06,1,2019-10-06,2022-12-08\n" + + "3,\"{\"\"domain\"\":\"\"workltycis.co\"\",\"\"hash\"\":\"\"BlQB8Vk0VwdbdWTGAzBF-ote1357Ajr0fFcgFf72kdk\"\"}\",Engineering,2023-01-06,1,2019-10-06,2022-12-08\n" + "4,,Engineering,2023-01-06,1,2018-06-03,\n"; //blank ID ColumnarRules rules = ColumnarRules.builder() @@ -141,7 +141,7 @@ void handle_pseudonymizeIfPresent(String caseVariant) { final String EXPECTED = "EMPLOYEE_ID,EMPLOYEE_EMAIL,DEPARTMENT,SNAPSHOT,MANAGER_ID,JOIN_DATE,LEAVE_DATE\n" + "1,\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",Engineering,2023-01-06,,2019-11-11,\n" + "2,\"{\"\"domain\"\":\"\"workltyics.co\"\",\"\"hash\"\":\"\"al4JK5KlOIsneC2DM__P_HRYe28LWYTBSf3yWKGm5yQ\"\"}\",Sales,2023-01-06,1,2020-01-01,\n" + - "3,\"{\"\"domain\"\":\"\"workltycis.co\"\",\"\"hash\"\":\"\"BlQB8Vk0VwdbdWTGAzBF.ote1357Ajr0fFcgFf72kdk\"\"}\",Engineering,2023-01-06,1,2019-10-06,2022-12-08\n" + + "3,\"{\"\"domain\"\":\"\"workltycis.co\"\",\"\"hash\"\":\"\"BlQB8Vk0VwdbdWTGAzBF-ote1357Ajr0fFcgFf72kdk\"\"}\",Engineering,2023-01-06,1,2019-10-06,2022-12-08\n" + "4,,Engineering,2023-01-06,1,2018-06-03,\n"; //blank ID ColumnarRules rules = ColumnarRules.builder() @@ -164,7 +164,7 @@ void handle_redaction() { final String EXPECTED = "EMPLOYEE_ID,EMPLOYEE_EMAIL,SNAPSHOT,MANAGER_ID,JOIN_DATE,LEAVE_DATE\n" + "1,\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",2023-01-06,,2019-11-11,\n" + "2,\"{\"\"domain\"\":\"\"workltyics.co\"\",\"\"hash\"\":\"\"al4JK5KlOIsneC2DM__P_HRYe28LWYTBSf3yWKGm5yQ\"\"}\",2023-01-06,1,2020-01-01,\n" + - "3,\"{\"\"domain\"\":\"\"workltycis.co\"\",\"\"hash\"\":\"\"BlQB8Vk0VwdbdWTGAzBF.ote1357Ajr0fFcgFf72kdk\"\"}\",2023-01-06,1,2019-10-06,2022-12-08\n" + + "3,\"{\"\"domain\"\":\"\"workltycis.co\"\",\"\"hash\"\":\"\"BlQB8Vk0VwdbdWTGAzBF-ote1357Ajr0fFcgFf72kdk\"\"}\",2023-01-06,1,2019-10-06,2022-12-08\n" + "4,,2023-01-06,1,2018-06-03,\n"; //blank ID ColumnarRules rules = ColumnarRules.builder() @@ -500,7 +500,7 @@ void shuffle() { "2,\"{\"\"domain\"\":\"\"workltyics.co\"\",\"\"hash\"\":\"\"al4JK5KlOIsneC2DM__P_HRYe28LWYTBSf3yWKGm5yQ\"\"}\",Sales,2023-01-06,1,2020-01-01,\n" + "1,\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"Qf4dLJ4jfqZLn9ef4VirvYjvOnRaVI5tf5oLnM65YOA\"\"}\",Engineering,2023-01-06,,2019-11-11,\n" + "4,,Engineering,2023-01-06,1,2018-06-03,\n" + - "3,\"{\"\"domain\"\":\"\"workltycis.co\"\",\"\"hash\"\":\"\"BlQB8Vk0VwdbdWTGAzBF.ote1357Ajr0fFcgFf72kdk\"\"}\",Engineering,2023-01-06,1,2019-10-06,2022-12-08\n" + "3,\"{\"\"domain\"\":\"\"workltycis.co\"\",\"\"hash\"\":\"\"BlQB8Vk0VwdbdWTGAzBF-ote1357Ajr0fFcgFf72kdk\"\"}\",Engineering,2023-01-06,1,2019-10-06,2022-12-08\n" ; //blank ID ColumnarRules rules = ColumnarRules.builder() From 754cbb20496ddc059a84fb4d3ce026f69d7089f1 Mon Sep 17 00:00:00 2001 From: Erik Schultink Date: Tue, 19 Nov 2024 14:06:47 -0800 Subject: [PATCH 06/15] fix cmd-line case --- .../psoxy/PseudonymizedIdentity.java | 19 ------------------- .../java/co/worklytics/psoxy/Handler.java | 3 +-- .../java/co/worklytics/psoxy/HandlerTest.java | 14 +++++++------- 3 files changed, 8 insertions(+), 28 deletions(-) diff --git a/java/core/src/main/java/co/worklytics/psoxy/PseudonymizedIdentity.java b/java/core/src/main/java/co/worklytics/psoxy/PseudonymizedIdentity.java index 7849193c1..6753f13ce 100644 --- a/java/core/src/main/java/co/worklytics/psoxy/PseudonymizedIdentity.java +++ b/java/core/src/main/java/co/worklytics/psoxy/PseudonymizedIdentity.java @@ -81,23 +81,4 @@ public Pseudonym asPseudonym() { .build(); } - /** - * convert this to Pseudonym; works ONLY if built with LEGACY format - * - * @return - */ - public Pseudonym fromLegacy() { - HashUtils hashUtils = new HashUtils(); - - Pseudonym.PseudonymBuilder builder = Pseudonym.builder() - .hash(hashUtils.decode(hash)) - .domain(domain); - - if (reversible != null) { - UrlSafeTokenPseudonymEncoder encoder = new UrlSafeTokenPseudonymEncoder(); - builder.reversible(encoder.decode(reversible).getReversible()); - } - - return builder.build(); - } } diff --git a/java/impl/cmd-line/src/main/java/co/worklytics/psoxy/Handler.java b/java/impl/cmd-line/src/main/java/co/worklytics/psoxy/Handler.java index 178faa61e..1e933fd7c 100644 --- a/java/impl/cmd-line/src/main/java/co/worklytics/psoxy/Handler.java +++ b/java/impl/cmd-line/src/main/java/co/worklytics/psoxy/Handler.java @@ -36,8 +36,7 @@ public void sanitize(@NonNull Config config, Pseudonymizer.ConfigurationOptions.ConfigurationOptionsBuilder options = - Pseudonymizer.ConfigurationOptions.builder() - .defaultScopeId(config.getDefaultScopeId()); + Pseudonymizer.ConfigurationOptions.builder(); if (config.getPseudonymizationSaltSecret() != null) { try (SecretManagerServiceClient client = SecretManagerServiceClient.create()) { diff --git a/java/impl/cmd-line/src/test/java/co/worklytics/psoxy/HandlerTest.java b/java/impl/cmd-line/src/test/java/co/worklytics/psoxy/HandlerTest.java index cdff8d860..a7e287bb2 100644 --- a/java/impl/cmd-line/src/test/java/co/worklytics/psoxy/HandlerTest.java +++ b/java/impl/cmd-line/src/test/java/co/worklytics/psoxy/HandlerTest.java @@ -56,9 +56,9 @@ public void setup() { @Test void main() { final String EXPECTED = "employeeId,email,department\n" + - "1,\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"wdxMApbuV7MglPNkZrM2WdV_v6x5Z31k8VbmqFCPRZI\"\"}\",Engineering\n" + - "2,\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"workltyics.co\"\",\"\"hash\"\":\"\"usvAqWmh_e2iweTO3zC6KIRxZthJcyBHkb9qqaH9PSw\"\"}\",Sales\n" + - "3,\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"workltycis.co\"\",\"\"hash\"\":\"\"Kxsm-xl6Y7fD15XEnp0fBbjGiVWEo90yBjhhQLqcXrI\"\"}\",Engineering\n" + + "1,\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"wdxMApbuV7MglPNkZrM2WdV_v6x5Z31k8VbmqFCPRZI\"\"}\",Engineering\n" + + "2,\"{\"\"domain\"\":\"\"workltyics.co\"\",\"\"hash\"\":\"\"usvAqWmh_e2iweTO3zC6KIRxZthJcyBHkb9qqaH9PSw\"\"}\",Sales\n" + + "3,\"{\"\"domain\"\":\"\"workltycis.co\"\",\"\"hash\"\":\"\"Kxsm-xl6Y7fD15XEnp0fBbjGiVWEo90yBjhhQLqcXrI\"\"}\",Engineering\n" + "4,,Engineering\n"; //blank ID @@ -75,9 +75,9 @@ void main() { @Test void main_redaction() { final String EXPECTED = "employeeId,email\n" + - "1,\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"wdxMApbuV7MglPNkZrM2WdV_v6x5Z31k8VbmqFCPRZI\"\"}\"\n" + - "2,\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"workltyics.co\"\",\"\"hash\"\":\"\"usvAqWmh_e2iweTO3zC6KIRxZthJcyBHkb9qqaH9PSw\"\"}\"\n" + - "3,\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"workltycis.co\"\",\"\"hash\"\":\"\"Kxsm-xl6Y7fD15XEnp0fBbjGiVWEo90yBjhhQLqcXrI\"\"}\"\n" + + "1,\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"wdxMApbuV7MglPNkZrM2WdV_v6x5Z31k8VbmqFCPRZI\"\"}\"\n" + + "2,\"{\"\"domain\"\":\"\"workltyics.co\"\",\"\"hash\"\":\"\"usvAqWmh_e2iweTO3zC6KIRxZthJcyBHkb9qqaH9PSw\"\"}\"\n" + + "3,\"{\"\"domain\"\":\"\"workltycis.co\"\",\"\"hash\"\":\"\"Kxsm-xl6Y7fD15XEnp0fBbjGiVWEo90yBjhhQLqcXrI\"\"}\"\n" + "4,\n"; //blank ID Config config = new Config(); @@ -95,7 +95,7 @@ void main_redaction() { @Test void main_cased() { final String EXPECTED = "Employee Id,Email,Some Department\n" + - "\"{\"\"scope\"\":\"\"hris\"\",\"\"hash\"\":\"\"pLl3XK16GbhWPs9BmUho9Q73VAOllCeIsVQQMFvnYr4\"\"}\",\"{\"\"scope\"\":\"\"email\"\",\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"wdxMApbuV7MglPNkZrM2WdV_v6x5Z31k8VbmqFCPRZI\"\"}\",Engineering\n"; + "\"{\"\"hash\"\":\"\"pLl3XK16GbhWPs9BmUho9Q73VAOllCeIsVQQMFvnYr4\"\"}\",\"{\"\"domain\"\":\"\"worklytics.co\"\",\"\"hash\"\":\"\"wdxMApbuV7MglPNkZrM2WdV_v6x5Z31k8VbmqFCPRZI\"\"}\",Engineering\n"; Config config = new Config(); config.columnsToPseudonymize = Set.of("Employee Id","Email"); From 6776448aced99fb04a6d98874638d882a76a1c6d Mon Sep 17 00:00:00 2001 From: Erik Schultink Date: Tue, 19 Nov 2024 15:07:29 -0800 Subject: [PATCH 07/15] update changelog --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cc2f9b6db..f34ace91a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,10 +17,12 @@ BREAKING: portal (formally Azure AD portal blade) - variables to `aws-host`/`gcp-host` modules to have changed slightly; if you initially copied an example based on 0.4.x, you may have to update some variable names in your `main.tf`. - - min `google` provider is not 5.0; this applies whether you're using GCP-hosted proxy, or merely Google Workspace as a + - min `google` provider is now 5.0; this applies whether you're using GCP-hosted proxy, or merely Google Workspace as a data source - various migrations applicable to 0.4.x have been removed; if upgrading from 0.4.x, make sure you first upgrade to latest version of 0.4.x (eg, 0.4.61), run `terraform apply`, and THEN update to 0.5.x + - the v0.3 pseudonymization algorithm is no longer supported; attempting to do so should result in an error + - `scope` field will no longer be sent with JSON-encoded pseudonyms. ## [0.4.61](https://github.com/Worklytics/psoxy/release/tag/v0.4.61) - added some `columnsToPseudonymizeIfPresent` to survey bulk connectors; these are to avoid PII From c730b9f1cae8c84b7b5ce1f4b4b16ce764bbf7bf Mon Sep 17 00:00:00 2001 From: Erik Schultink Date: Tue, 19 Nov 2024 15:36:15 -0800 Subject: [PATCH 08/15] fix test commands for aws-psoxy-rest case --- infra/modules/aws-psoxy-rest/main.tf | 18 +++++++----------- infra/modules/aws-psoxy-rest/test_script.tftpl | 13 +++++++++++++ 2 files changed, 20 insertions(+), 11 deletions(-) create mode 100644 infra/modules/aws-psoxy-rest/test_script.tftpl diff --git a/infra/modules/aws-psoxy-rest/main.tf b/infra/modules/aws-psoxy-rest/main.tf index 2d1636c93..373f993c5 100644 --- a/infra/modules/aws-psoxy-rest/main.tf +++ b/infra/modules/aws-psoxy-rest/main.tf @@ -220,17 +220,13 @@ resource "local_file" "todo" { } locals { - test_script = < Date: Tue, 19 Nov 2024 15:39:32 -0800 Subject: [PATCH 09/15] remove identifier_scope_id from terraform modules --- infra/modules/aws-psoxy-rest/main.tf | 1 - infra/modules/aws-psoxy-rest/variables.tf | 6 ------ infra/modules/gcp-psoxy-rest/main.tf | 1 - infra/modules/gcp-psoxy-rest/variables.tf | 8 +------ .../worklytics-connector-specs/main.tf | 21 ------------------- infra/modules/worklytics-connectors/README.md | 1 - 6 files changed, 1 insertion(+), 37 deletions(-) diff --git a/infra/modules/aws-psoxy-rest/main.tf b/infra/modules/aws-psoxy-rest/main.tf index 373f993c5..7452d93bd 100644 --- a/infra/modules/aws-psoxy-rest/main.tf +++ b/infra/modules/aws-psoxy-rest/main.tf @@ -20,7 +20,6 @@ locals { TARGET_HOST = var.target_host SOURCE_AUTH_STRATEGY_IDENTIFIER = var.source_auth_strategy OAUTH_SCOPES = join(" ", var.oauth_scopes) - IDENTIFIER_SCOPE_ID = var.identifier_scope_id } : k => v if v != null } diff --git a/infra/modules/aws-psoxy-rest/variables.tf b/infra/modules/aws-psoxy-rest/variables.tf index 1bf19990d..ea79e4200 100644 --- a/infra/modules/aws-psoxy-rest/variables.tf +++ b/infra/modules/aws-psoxy-rest/variables.tf @@ -99,12 +99,6 @@ variable "source_kind" { description = "kind of source (eg, 'gmail', 'google-chat', etc)" } -variable "identifier_scope_id" { - type = string - description = "DEPRECATED; will be removed in v0.5.x" - default = null -} - variable "path_to_repo_root" { type = string description = "the path where your psoxy repo resides" diff --git a/infra/modules/gcp-psoxy-rest/main.tf b/infra/modules/gcp-psoxy-rest/main.tf index 4c554fbfa..b0bde886e 100644 --- a/infra/modules/gcp-psoxy-rest/main.tf +++ b/infra/modules/gcp-psoxy-rest/main.tf @@ -23,7 +23,6 @@ locals { TARGET_HOST = var.target_host SOURCE_AUTH_STRATEGY_IDENTIFIER = var.source_auth_strategy OAUTH_SCOPES = join(" ", var.oauth_scopes) - IDENTIFIER_SCOPE_ID = var.identifier_scope_id } : k => v if v != null } diff --git a/infra/modules/gcp-psoxy-rest/variables.tf b/infra/modules/gcp-psoxy-rest/variables.tf index 143764558..29cf46e40 100644 --- a/infra/modules/gcp-psoxy-rest/variables.tf +++ b/infra/modules/gcp-psoxy-rest/variables.tf @@ -128,12 +128,6 @@ variable "source_kind" { default = "unknown" } -variable "identifier_scope_id" { - type = string - description = "DEPRECATED; will be removed in v0.5.x" - default = null -} - variable "invoker_sa_emails" { type = list(string) description = "emails of GCP service accounts to allow to invoke this proxy instance via HTTP" @@ -162,4 +156,4 @@ variable "todo_step" { type = number description = "of all todos, where does this one logically fall in sequence" default = 1 -} \ No newline at end of file +} diff --git a/infra/modules/worklytics-connector-specs/main.tf b/infra/modules/worklytics-connector-specs/main.tf index d20058923..88d3a26a4 100644 --- a/infra/modules/worklytics-connector-specs/main.tf +++ b/infra/modules/worklytics-connector-specs/main.tf @@ -31,7 +31,6 @@ locals { enable_by_default : true worklytics_connector_id : "gdirectory-psoxy", display_name : "Google Directory" - identifier_scope_id : "gapps" apis_consumed : [ "admin.googleapis.com" ] @@ -63,7 +62,6 @@ locals { enable_by_default : true worklytics_connector_id : "gcal-psoxy", display_name : "Google Calendar" - identifier_scope_id : "gapps" apis_consumed : [ "calendar-json.googleapis.com" ] @@ -88,7 +86,6 @@ locals { enable_by_default : false, worklytics_connector_id : "gmail-meta-psoxy", display_name : "GMail" - identifier_scope_id : "gapps" apis_consumed : [ "gmail.googleapis.com" ] @@ -110,7 +107,6 @@ locals { enable_by_default : false worklytics_connector_id : "google-chat-psoxy", display_name : "Google Chat" - identifier_scope_id : "gapps" apis_consumed : [ "admin.googleapis.com" ] @@ -131,7 +127,6 @@ locals { enable_by_default : false worklytics_connector_id : "google-meet-psoxy" display_name : "Google Meet" - identifier_scope_id : "gapps" apis_consumed : [ "admin.googleapis.com" ] @@ -152,7 +147,6 @@ locals { enable_by_default : false worklytics_connector_id : "gdrive-psoxy", display_name : "Google Drive" - identifier_scope_id : "gapps" apis_consumed : [ "drive.googleapis.com" ] @@ -197,7 +191,6 @@ locals { enable_by_default : false, source_kind : "azure-ad", display_name : "(Deprecated, use MSFT Entra Id instead) Azure Directory" - identifier_scope_id : "azure-ad" source_auth_strategy : "oauth2_refresh_token" target_host : "graph.microsoft.com" required_oauth2_permission_scopes : [], @@ -227,7 +220,6 @@ locals { enable_by_default : true, source_kind : "azure-ad", display_name : "Microsoft Entra ID (former Azure AD)" - identifier_scope_id : "azure-ad" source_auth_strategy : "oauth2_refresh_token" target_host : "graph.microsoft.com" required_oauth2_permission_scopes : [] @@ -257,7 +249,6 @@ locals { enable_by_default : true, worklytics_connector_id : "outlook-cal-psoxy", display_name : "Outlook Calendar" - identifier_scope_id : "azure-ad" source_auth_strategy : "oauth2_refresh_token" target_host : "graph.microsoft.com" required_oauth2_permission_scopes : [] @@ -288,7 +279,6 @@ locals { enable_by_default : false, worklytics_connector_id : "outlook-mail-psoxy", display_name : "Outlook Mail" - identifier_scope_id : "azure-ad" source_auth_strategy : "oauth2_refresh_token" target_host : "graph.microsoft.com" required_oauth2_permission_scopes : [] @@ -319,7 +309,6 @@ locals { enable_by_default : false, worklytics_connector_id : "msft-teams-psoxy", display_name : "Microsoft Teams" - identifier_scope_id : "azure-ad" source_auth_strategy : "oauth2_refresh_token" target_host : "graph.microsoft.com" required_oauth2_permission_scopes : [], @@ -399,7 +388,6 @@ EOT enable_by_default : false, worklytics_connector_id : "asana-psoxy" display_name : "Asana" - identifier_scope_id : "asana" worklytics_connector_name : "Asana via Psoxy" target_host : "app.asana.com" source_auth_strategy : "oauth2_access_token" @@ -437,7 +425,6 @@ EOT enable_by_default : false, worklytics_connector_id : "github-enterprise-psoxy" display_name : "Github Enterprise" - identifier_scope_id : "github" worklytics_connector_name : "Github Enterprise via Psoxy" target_host : "api.github.com" source_auth_strategy : "oauth2_refresh_token" @@ -546,7 +533,6 @@ EOT enable_by_default : false worklytics_connector_id : "github-enterprise-server-psoxy" display_name : "Github Enterprise Server" - identifier_scope_id : "github" worklytics_connector_name : "Github Enterprise Server via Psoxy" target_host : local.github_enterprise_server_host source_auth_strategy : "oauth2_refresh_token" @@ -670,7 +656,6 @@ EOT enable_by_default : false worklytics_connector_id : "github-free-team-psoxy" display_name : "Github" - identifier_scope_id : "github" worklytics_connector_name : "Github Free/Professional/Team via Psoxy" target_host : "api.github.com" source_auth_strategy : "oauth2_refresh_token" @@ -776,7 +761,6 @@ EOT enable_by_default : false worklytics_connector_id : "salesforce-psoxy" display_name : "Salesforce" - identifier_scope_id : "salesforce" worklytics_connector_name : "Salesforce via Psoxy" target_host : var.salesforce_domain source_auth_strategy : "oauth2_refresh_token" @@ -877,7 +861,6 @@ EOT source_kind : "slack" availability : "ga", enable_by_default : true - identifier_scope_id : "slack" worklytics_connector_id : "slack-discovery-api-psoxy", worklytics_connector_name : "Slack via Psoxy", display_name : "Slack Discovery API" @@ -954,7 +937,6 @@ EOT worklytics_connector_id : "zoom-psoxy" display_name : "Zoom" worklytics_connector_name : "Zoom via Psoxy" - identifier_scope_id : "zoom" source_auth_strategy : "oauth2_refresh_token" target_host : "api.zoom.us" environment_variables : { @@ -1075,7 +1057,6 @@ EOT target_host : "api.dropboxapi.com" source_auth_strategy : "oauth2_refresh_token" display_name : "Dropbox Business" - identifier_scope_id : "dropbox-business" worklytics_connector_name : "Dropbox Business via Psoxy" secured_variables : [ { @@ -1164,7 +1145,6 @@ EOT target_host : var.jira_server_url source_auth_strategy : "oauth2_access_token" display_name : "Jira Data Center" - identifier_scope_id : "jira" worklytics_connector_name : "Jira Server REST API via Psoxy" secured_variables : [ { @@ -1207,7 +1187,6 @@ EOT target_host : "api.atlassian.com" source_auth_strategy : "oauth2_refresh_token" display_name : "Jira REST API" - identifier_scope_id : "jira" worklytics_connector_name : "Jira REST API via Psoxy" secured_variables : [ { diff --git a/infra/modules/worklytics-connectors/README.md b/infra/modules/worklytics-connectors/README.md index 95cd64472..ea6eb5868 100644 --- a/infra/modules/worklytics-connectors/README.md +++ b/infra/modules/worklytics-connectors/README.md @@ -21,7 +21,6 @@ type = map(object({ source_kind = string worklytics_connector_id = string worklytics_connector_name = string - identifier_scope_id = string # deprecated source_auth_strategy = string target_host = string environment_variables = map(string) From ef93821b9f2ebc37685e8d1ce992b58c7e18c12b Mon Sep 17 00:00:00 2001 From: Erik Schultink Date: Tue, 19 Nov 2024 16:03:55 -0800 Subject: [PATCH 10/15] use templates for gcp case; remove moves --- infra/modules/gcp-psoxy-rest/main.tf | 29 +++++-------------- .../modules/gcp-psoxy-rest/test_script.tftpl | 13 +++++++++ 2 files changed, 20 insertions(+), 22 deletions(-) create mode 100644 infra/modules/gcp-psoxy-rest/test_script.tftpl diff --git a/infra/modules/gcp-psoxy-rest/main.tf b/infra/modules/gcp-psoxy-rest/main.tf index b0bde886e..6c82176d0 100644 --- a/infra/modules/gcp-psoxy-rest/main.tf +++ b/infra/modules/gcp-psoxy-rest/main.tf @@ -179,25 +179,15 @@ resource "local_file" "test_script" { filename = "test-${trimprefix(var.instance_id, var.environment_id_prefix)}.sh" file_permission = "755" - content = < Date: Tue, 19 Nov 2024 16:03:59 -0800 Subject: [PATCH 11/15] fix msft bug --- CHANGELOG.md | 7 +++++-- .../modules/worklytics-connectors-msft-365/outputs.tf | 11 ++--------- 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f34ace91a..01dc33784 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,8 +11,9 @@ Changes to be including in future/planned release notes will be added here. BREAKING: - min `azuread` provider is generally 2.44; if you're using an older version, you'll need to - upgrade (`terraform init --upgrade`) - - `azuread-local-cert` module variables have changed; you must now pass `application_id` instead + upgrade (`terraform init --upgrade`); a state refresh (`terraform refresh`) may help if it complains about unknown attributes + present in your state + - `azuread-local-cert` module variables have changed; you must now pass `application_id` instead of `application_object_id`; these refer to different values you can obtain via the [Microsoft Entra admin center](https://entra.microsoft.com/#home) portal (formally Azure AD portal blade) - variables to `aws-host`/`gcp-host` modules to have changed slightly; if you initially copied an @@ -24,6 +25,8 @@ BREAKING: - the v0.3 pseudonymization algorithm is no longer supported; attempting to do so should result in an error - `scope` field will no longer be sent with JSON-encoded pseudonyms. + + ## [0.4.61](https://github.com/Worklytics/psoxy/release/tag/v0.4.61) - added some `columnsToPseudonymizeIfPresent` to survey bulk connectors; these are to avoid PII being sent to Worklytics if these unexpected columns sent, but without errors in usual case, when diff --git a/infra/modules/worklytics-connectors-msft-365/outputs.tf b/infra/modules/worklytics-connectors-msft-365/outputs.tf index 3a7159e22..b20c9bf4f 100644 --- a/infra/modules/worklytics-connectors-msft-365/outputs.tf +++ b/infra/modules/worklytics-connectors-msft-365/outputs.tf @@ -23,20 +23,13 @@ output "next_todo_step" { value = try(max(concat([var.todo_step], local.next_todo_steps)), var.todo_step + 1) } -#deprecated; don't think it's used directly anywhere -output "application_ids" { - value = { - for id, connection in module.msft_connection : id => connection.connector.application_id - } -} - output "api_clients" { description = "Map of API client identifiers. Useful for configuration of clients, terraform migration." value = { for id, connection in module.msft_connection : id => { - oauth_client_id = connection.connector.client_id # yes, it's same as application id; but duplicated for clarity - azuread_object_id = connection.connector.object_id # used for terraform imports + oauth_client_id = connection.connector.client_id + entra_object_id = connection.connector.object_id # used for terraform imports } } } From 4335662f36aeb5422470ac771ab5d1d6f647ed5b Mon Sep 17 00:00:00 2001 From: Erik Schultink Date: Mon, 2 Dec 2024 15:10:18 -0800 Subject: [PATCH 12/15] add explanatory comment on FieldTransform re leaving PseduonynmizeWithScope in codebase --- .../avaulta/gateway/rules/transforms/FieldTransform.java | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/java/gateway-core/src/main/java/com/avaulta/gateway/rules/transforms/FieldTransform.java b/java/gateway-core/src/main/java/com/avaulta/gateway/rules/transforms/FieldTransform.java index 87ce16a96..e62210fc6 100644 --- a/java/gateway-core/src/main/java/com/avaulta/gateway/rules/transforms/FieldTransform.java +++ b/java/gateway-core/src/main/java/com/avaulta/gateway/rules/transforms/FieldTransform.java @@ -31,11 +31,6 @@ static FieldTransform filter(String filter) { return Filter.builder().filter(filter).build(); } - @Deprecated // only relevant for legacy case - static FieldTransform pseudonymizeWithScope(String scope) { - return PseudonymizeWithScope.builder().pseudonymizeWithScope(scope).build(); - } - static FieldTransform formatString(String template) { return FormatString.builder().formatString(template).build(); } @@ -205,7 +200,8 @@ public boolean isValid() { /** * if provided, value will be pseudonymized with provided scope * - * @deprecated ; only relevant for legacy case + * @deprecated ; only relevant for legacy case, which is no longer supported; actually class left in code + * base so we can give fatal error with good feedback for cause. */ @JsonTypeName("pseudonymizeWithScope") @NoArgsConstructor From 17c3e81d9fd8c1e1797b9ef9998c8d35c6b2cbd7 Mon Sep 17 00:00:00 2001 From: Erik Schultink Date: Mon, 2 Dec 2024 15:10:36 -0800 Subject: [PATCH 13/15] cleanup changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01dc33784..02344f50f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,7 +23,7 @@ BREAKING: - various migrations applicable to 0.4.x have been removed; if upgrading from 0.4.x, make sure you first upgrade to latest version of 0.4.x (eg, 0.4.61), run `terraform apply`, and THEN update to 0.5.x - the v0.3 pseudonymization algorithm is no longer supported; attempting to do so should result in an error - - `scope` field will no longer be sent with JSON-encoded pseudonyms. + - `scope` field will no longer be sent with JSON-encoded pseudonyms. From 2ed002c115a3807eaf7fb4523ef0f8126e8ffc9b Mon Sep 17 00:00:00 2001 From: Erik Schultink Date: Mon, 2 Dec 2024 15:16:43 -0800 Subject: [PATCH 14/15] bump tf versions to support 1.10.x --- .github/workflows/ci-terraform-examples-release.yaml | 2 +- .github/workflows/ci-terraform-examples.yaml | 2 +- .github/workflows/ci-terraform-modules.yaml | 2 +- infra/modules/aws-host/main.tf | 2 +- infra/modules/worklytics-connectors-google-workspace/main.tf | 2 +- infra/modules/worklytics-connectors-msft-365/main.tf | 4 ++-- infra/modules/worklytics-connectors/main.tf | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci-terraform-examples-release.yaml b/.github/workflows/ci-terraform-examples-release.yaml index fbdbaf4bb..f37619cf0 100644 --- a/.github/workflows/ci-terraform-examples-release.yaml +++ b/.github/workflows/ci-terraform-examples-release.yaml @@ -17,7 +17,7 @@ jobs: 'examples/gcp-bootstrap-cft', 'examples/gcp-bootstrap-simple', ] - terraform_version: [ '~1.6.0', '~1.7.0', '~1.8.0', '~1.9.0', 'latest' ] + terraform_version: [ '~1.6.0', '~1.7.0', '~1.8.0', '~1.9.0', '~1.10.0', 'latest' ] uses: ./.github/workflows/ci-terraform-example.yaml with: terraform_version: ${{ matrix.terraform_version }} diff --git a/.github/workflows/ci-terraform-examples.yaml b/.github/workflows/ci-terraform-examples.yaml index 0eb206160..9b655e78f 100644 --- a/.github/workflows/ci-terraform-examples.yaml +++ b/.github/workflows/ci-terraform-examples.yaml @@ -15,7 +15,7 @@ jobs: 'examples-dev/aws', 'examples-dev/gcp', ] - terraform_version: [ '~1.6.0', '~1.7.0', '~1.8.0', '~1.9.0', 'latest' ] + terraform_version: [ '~1.6.0', '~1.7.0', '~1.8.0', '~1.9.0', '~1.10.0', 'latest' ] uses: ./.github/workflows/ci-terraform-example.yaml with: terraform_version: ${{ matrix.terraform_version }} diff --git a/.github/workflows/ci-terraform-modules.yaml b/.github/workflows/ci-terraform-modules.yaml index 2e6f66830..0699e2702 100644 --- a/.github/workflows/ci-terraform-modules.yaml +++ b/.github/workflows/ci-terraform-modules.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - terraform_version: [ '~1.6.0', '~1.7.0', '~1.8.0', '~1.9.0', 'latest' ] + terraform_version: [ '~1.6.0', '~1.7.0', '~1.8.0', '~1.9.0', '~1.10.0', 'latest' ] steps: - name: Check out code uses: actions/checkout@v4 diff --git a/infra/modules/aws-host/main.tf b/infra/modules/aws-host/main.tf index 0c00c0444..6e04d3d15 100644 --- a/infra/modules/aws-host/main.tf +++ b/infra/modules/aws-host/main.tf @@ -1,5 +1,5 @@ terraform { - required_version = ">= 1.3, < 1.10" + required_version = ">= 1.3, < 1.11" required_providers { aws = { diff --git a/infra/modules/worklytics-connectors-google-workspace/main.tf b/infra/modules/worklytics-connectors-google-workspace/main.tf index 907d6f17a..4d6cf2004 100644 --- a/infra/modules/worklytics-connectors-google-workspace/main.tf +++ b/infra/modules/worklytics-connectors-google-workspace/main.tf @@ -1,5 +1,5 @@ terraform { - required_version = ">= 1.3, < 1.10" + required_version = ">= 1.3, < 1.11" } terraform { diff --git a/infra/modules/worklytics-connectors-msft-365/main.tf b/infra/modules/worklytics-connectors-msft-365/main.tf index b942d508b..c237bb1b8 100644 --- a/infra/modules/worklytics-connectors-msft-365/main.tf +++ b/infra/modules/worklytics-connectors-msft-365/main.tf @@ -1,5 +1,5 @@ terraform { - required_version = ">= 1.3, < 1.10" + required_version = ">= 1.3, < 1.11" } locals { @@ -127,4 +127,4 @@ locals { }) }) } -} \ No newline at end of file +} diff --git a/infra/modules/worklytics-connectors/main.tf b/infra/modules/worklytics-connectors/main.tf index dde586fad..71757e12c 100644 --- a/infra/modules/worklytics-connectors/main.tf +++ b/infra/modules/worklytics-connectors/main.tf @@ -1,5 +1,5 @@ terraform { - required_version = ">= 1.3, < 1.10" + required_version = ">= 1.3, < 1.11" } module "worklytics_connector_specs" { From d4dada639bfbb80299bd2ee36fe2a030c5b26d89 Mon Sep 17 00:00:00 2001 From: Erik Schultink Date: Mon, 2 Dec 2024 15:20:29 -0800 Subject: [PATCH 15/15] more tf version references --- infra/examples-dev/aws/main.tf | 2 +- infra/examples-dev/gcp/main.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/infra/examples-dev/aws/main.tf b/infra/examples-dev/aws/main.tf index 94bb0a450..7382c3b45 100644 --- a/infra/examples-dev/aws/main.tf +++ b/infra/examples-dev/aws/main.tf @@ -1,5 +1,5 @@ terraform { - required_version = ">= 1.3, < 1.10" + required_version = ">= 1.3, < 1.11" required_providers { # for the infra that will host Psoxy instances diff --git a/infra/examples-dev/gcp/main.tf b/infra/examples-dev/gcp/main.tf index 7846655e1..040c6b729 100644 --- a/infra/examples-dev/gcp/main.tf +++ b/infra/examples-dev/gcp/main.tf @@ -1,5 +1,5 @@ terraform { - required_version = ">= 1.3, < 1.10" + required_version = ">= 1.3, < 1.11" required_providers { google = {