This is an automated email from the git hooks/post-receive script.
codeberg pushed a commit to branch main
in repository java-idp-plugin-oidc-op-oidfed.
View the commit online:
https://codeberg.org/Shibboleth/java-idp-plugin-oidc-op-oidfed/commit/9a937cde6623d8a391de82b82ea3bf371bf9e74d
The following commit(s) were added to refs/heads/main by this push:
new 9a937cd Improve tests related to metadata policy test vectors
9a937cd is described below
commit 9a937cde6623d8a391de82b82ea3bf371bf9e74d
Author: Henri Mikkonen <henri.mikkonen at iki.fi>
AuthorDate: Thu Sep 24 19:30:38 2026 +0300
Improve tests related to metadata policy test vectors
- Use raw JSON instead of Nimbus OIDCClientMetadata
- Nimbus object may silently remove false-flags from the metadata
- Analyse the non-error cases better
- Moved test vectors into oidfed-common-testing
---
.../flow/oidfed/AbstractFederationFlowTest.java | 47 +-
...shedAuthorizeFlowAutomaticRegistrationTest.java | 47 +-
.../metadata-policy-test-vectors-2025-02-13.json | 50299 -------------------
3 files changed, 67 insertions(+), 50326 deletions(-)
diff --git a/idp-oidfed-op-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/AbstractFederationFlowTest.java b/idp-oidfed-op-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/AbstractFederationFlowTest.java
index 482f0a6..7f1479f 100644
--- a/idp-oidfed-op-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/AbstractFederationFlowTest.java
+++ b/idp-oidfed-op-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/AbstractFederationFlowTest.java
@@ -46,14 +46,10 @@ import org.apache.hc.core5.http.HttpEntity;
import org.mockito.ArgumentMatcher;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
-import org.springframework.core.io.ClassPathResource;
-import org.springframework.core.io.Resource;
import org.springframework.webflow.executor.FlowExecutionResult;
import org.testng.Assert;
import org.testng.annotations.BeforeMethod;
-import com.fasterxml.jackson.core.JsonProcessingException;
-import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.nimbusds.jose.JOSEException;
import com.nimbusds.jose.JWSAlgorithm;
@@ -67,7 +63,6 @@ import com.nimbusds.jwt.JWTClaimsSet;
import com.nimbusds.jwt.PlainJWT;
import com.nimbusds.jwt.SignedJWT;
import com.nimbusds.oauth2.sdk.ErrorResponse;
-import com.nimbusds.oauth2.sdk.ParseException;
import com.nimbusds.oauth2.sdk.Response;
import com.nimbusds.oauth2.sdk.id.Issuer;
import com.nimbusds.openid.connect.sdk.SubjectType;
@@ -288,6 +283,26 @@ public class AbstractFederationFlowTest extends AbstractOidcFlowTest {
return FederationJwtSupport.entityStatement(JWSAlgorithm.RS256, leafKey, builder.build()).serialize();
}
+ protected String rpEntityConfiguration(final String clientId, final Map<String, Object> metadata,
+ final List<Map<String, String>> trustMarks, final List<String> crit, final JWK leafKey,
+ final String... authorityHints) throws URISyntaxException {
+ final JWTClaimsSet.Builder builder = new JWTClaimsSet.Builder().issuer(clientId).subject(clientId)
+ .issueTime(Date.from(Instant.now()))
+ .expirationTime(Date.from(Instant.now().plusSeconds(300)))
+ .claim("jwks", new JWKSet(leafKey).toJSONObject(true))
+ .claim("metadata", Map.of("openid_relying_party", new JSONObject(metadata)))
+ .claim("authority_hints", authorityHints == null || authorityHints.length == 0 ?
+ new String[] { anchorId } : authorityHints);
+ if (trustMarks != null) {
+ builder.claim("trust_marks", trustMarks);
+ }
+ if (crit != null) {
+ builder.claim("crit", crit);
+ }
+ return FederationJwtSupport.entityStatement(JWSAlgorithm.RS256, leafKey, builder.build()).serialize();
+ }
+
+
protected String rpEntityConfigurationUnmatchingKey(final String clientId,
final OIDCClientMetadata metadata, final String... authorityHints) throws URISyntaxException {
final JWTClaimsSet claimsSet = new JWTClaimsSet.Builder().issuer(clientId).subject(clientId)
@@ -648,7 +663,7 @@ public class AbstractFederationFlowTest extends AbstractOidcFlowTest {
metadata.put("jwks", new JWKSet(rpKey.toPublicJWK()).toJSONObject());
mapResponse(entityConfigurationUrl(clientId),
mockResponse(rpEntityConfiguration(clientId,
- OIDCClientMetadata.parse(new JSONObject(metadata)), intermediateId)));
+ new JSONObject(metadata), null, null, leafKey, intermediateId)));
}
mapResponse(entityConfigurationUrl(intermediateId), mockResponse(intermediateConfiguration(intermediateId)));
mapResponse(entityConfigurationUrl(anchorId), mockResponse(trustedAnchorConfiguration()));
@@ -659,7 +674,7 @@ public class AbstractFederationFlowTest extends AbstractOidcFlowTest {
mockResponse(rpSubordinateStatement(intermediateId, intermediateKey, leafKey, clientId,
Map.of("openid_relying_party", (Map<String, Object>) testVector.get("INT")),
intermediateId)));
- } catch (UnsupportedOperationException | IOException | URISyntaxException | ParseException e) {
+ } catch (UnsupportedOperationException | IOException | URISyntaxException e) {
Assert.fail("Could not initialize mock HTTP client", e);
}
}
@@ -729,24 +744,6 @@ public class AbstractFederationFlowTest extends AbstractOidcFlowTest {
}
}
- protected List<Map<String, Object>> loadPolicyTestVectors() throws IOException {
- final ObjectMapper objectMapper = new ObjectMapper();
- final Resource file = new ClassPathResource(
- "/net/shibboleth/idp/oidc/metadata/impl/metadata-policy-test-vectors-2025-02-13.json");
-
- final Charset utf8 = Charset.forName("UTF-8");
- assert utf8 != null;
- try {
- final List<Map<String, Object>> policies =
- objectMapper.readValue(file.getContentAsString(utf8),
- new TypeReference<List<Map<String, Object>>>(){});
- Assert.assertNotNull(policies);
- return policies;
- } catch (final JsonProcessingException e) {
- throw new IOException("Could not parse JSON from the input", e);
- }
- }
-
protected ErrorResponse parseErrorResponse(final FlowExecutionResult result, final String message) {
final Response response = parseResponse(result);
Assert.assertFalse(response.indicatesSuccess(), message);
diff --git a/idp-oidfed-op-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/PushedAuthorizeFlowAutomaticRegistrationTest.java b/idp-oidfed-op-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/PushedAuthorizeFlowAutomaticRegistrationTest.java
index 2ffdd13..8f0a258 100644
--- a/idp-oidfed-op-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/PushedAuthorizeFlowAutomaticRegistrationTest.java
+++ b/idp-oidfed-op-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/PushedAuthorizeFlowAutomaticRegistrationTest.java
@@ -22,12 +22,14 @@ import java.security.PublicKey;
import java.text.ParseException;
import java.time.Duration;
import java.time.Instant;
+import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.UUID;
+import org.opensaml.profile.context.ProfileRequestContext;
import org.opensaml.storage.StorageService;
import org.opensaml.storage.impl.MemoryStorageService;
import org.opensaml.storage.impl.StorageServiceReplayCache;
@@ -60,6 +62,10 @@ import net.shibboleth.idp.plugin.oidc.op.profile.flow.PushedAuthorizeFlowTest;
import net.shibboleth.idp.plugin.oidc.op.profile.logic.DefaultPushedAuthorizationRequestUriDeserializationFunction;
import net.shibboleth.idp.plugin.oidc.op.token.support.AuthorizeCodeClaimsSet;
import net.shibboleth.idp.session.SessionException;
+import net.shibboleth.oidfed.metadata.payload.claim.Metadata;
+import net.shibboleth.oidfed.profile.context.RelyingPartyTrustChainContext;
+import net.shibboleth.oidfed.profile.context.VerifiedTrustChain;
+import net.shibboleth.oidfed.testing.FederationMetadataPolicyTestingSupport;
import net.shibboleth.shared.collection.Pair;
import net.shibboleth.shared.component.ComponentInitializationException;
import net.shibboleth.shared.security.DataSealerException;
@@ -465,8 +471,9 @@ public class PushedAuthorizeFlowAutomaticRegistrationTest extends AbstractFedera
}
@Test
+ @SuppressWarnings("unchecked")
public void testWithTestVectors() throws Exception {
- final List<Map<String, Object>> vectors = loadPolicyTestVectors();
+ final List<Map<String, Object>> vectors = FederationMetadataPolicyTestingSupport.loadPolicyTestVectors();
for (final Map<String, Object> vector : vectors) {
initializeMocks();
initializeThreadLocals();
@@ -486,7 +493,43 @@ public class PushedAuthorizeFlowAutomaticRegistrationTest extends AbstractFedera
ERROR_MESSAGE);
}
} else {
- assertSuccessResponse(result, clientId, ERROR_MESSAGE);
+ if (vector.get("resolved") instanceof Map<?,?> map) {
+ final Map<String, Object> metadata = (Map<String, Object>) vector.get("metadata");
+ final Map<String, Object> resolved = (Map<String, Object>) map;
+ assertSuccessResponse(result, clientId, ERROR_MESSAGE);
+ final ProfileRequestContext prc =
+ (ProfileRequestContext)request.getAttribute(ProfileRequestContext.BINDING_KEY);
+ assert prc != null;
+ final VerifiedTrustChain selectedChain = prc.ensureInboundMessageContext()
+ .ensureSubcontext(RelyingPartyTrustChainContext.class).getSelectedTrustChain();
+ assert selectedChain != null;
+ final Metadata enforcedMetadata = selectedChain.getMetadata();
+ assert enforcedMetadata != null;
+ final Map<String, Object> rpMetadata = enforcedMetadata.getOpenidRelyingPartyMetadata();
+ assert rpMetadata != null;
+ for (final String claim : metadata.keySet()) {
+ final Object actual = rpMetadata.get(claim);
+ if (resolved.get(claim) instanceof Boolean flag) {
+ if (flag) {
+ Assert.assertEquals(actual, flag, ERROR_MESSAGE);
+ } else {
+ Assert.assertTrue(actual == null || !((boolean) actual), ERROR_MESSAGE);
+ }
+ } else if (resolved.get(claim) instanceof Collection<?> collection) {
+ final Collection<String> expectedStrings = collection.stream()
+ .map(String.class::cast).toList();
+ final Collection<String> actualStrings = ((Collection<?>) actual).stream()
+ .map(String.class::cast).toList();
+ Assert.assertTrue(expectedStrings.containsAll(actualStrings));
+ Assert.assertTrue(actualStrings.containsAll(expectedStrings));
+ } else {
+ Assert.assertEquals(actual, resolved.get(claim), ERROR_MESSAGE);
+
+ }
+ }
+ } else {
+ Assert.fail(ERROR_MESSAGE);
+ }
}
}
}
diff --git a/idp-oidfed-op-impl/src/test/resources/net/shibboleth/idp/oidc/metadata/impl/metadata-policy-test-vectors-2025-02-13.json b/idp-oidfed-op-impl/src/test/resources/net/shibboleth/idp/oidc/metadata/impl/metadata-policy-test-vectors-2025-02-13.json
deleted file mode 100644
index c70ca6b..0000000
--- a/idp-oidfed-op-impl/src/test/resources/net/shibboleth/idp/oidc/metadata/impl/metadata-policy-test-vectors-2025-02-13.json
+++ /dev/null
@@ -1,50299 +0,0 @@
-[
- {
- "n" : 1,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 2,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 3,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 4,
- "combination" : [ "value", "value" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 5,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 6,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 7,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 8,
- "combination" : [ "value", "value" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 9,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 10,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 11,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 12,
- "combination" : [ "value", "value" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 13,
- "combination" : [ "value", "value" ],
- "TA" : {
- "logo_uri" : {
- "value" : null
- }
- },
- "INT" : {
- "logo_uri" : {
- "value" : "https:\/\/example.com\/logo.png"
- }
- },
- "metadata" : {
- "logo_uri" : "https:\/\/example.com\/logo.png"
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate logo_uri policy: Value mismatch"
- },
- {
- "n" : 14,
- "combination" : [ "value", "value" ],
- "TA" : {
- "logo_uri" : {
- "value" : null
- }
- },
- "INT" : {
- "logo_uri" : {
- "value" : "https:\/\/example.com\/logo.png"
- }
- },
- "metadata" : {
- "logo_uri" : "https:\/\/images.example.com\/logo.jpg"
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate logo_uri policy: Value mismatch"
- },
- {
- "n" : 15,
- "combination" : [ "value", "value" ],
- "TA" : {
- "logo_uri" : {
- "value" : null
- }
- },
- "INT" : {
- "logo_uri" : {
- "value" : "https:\/\/example.com\/logo.png"
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate logo_uri policy: Value mismatch"
- },
- {
- "n" : 16,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 17,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 18,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 19,
- "combination" : [ "value", "value" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 20,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 21,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 22,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 23,
- "combination" : [ "value", "value" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 24,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 25,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 26,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 27,
- "combination" : [ "value", "value" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 28,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 29,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 30,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 31,
- "combination" : [ "value", "value" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 32,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 33,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 34,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 35,
- "combination" : [ "value", "value" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 36,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 37,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 38,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 39,
- "combination" : [ "value", "value" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 40,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 41,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 42,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 43,
- "combination" : [ "value", "value" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 44,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 45,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 46,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 47,
- "combination" : [ "value", "value" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 48,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 49,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 50,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 51,
- "combination" : [ "value", "value" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 52,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 53,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 54,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 55,
- "combination" : [ "value", "value" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 56,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 57,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 58,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 59,
- "combination" : [ "value", "value" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 60,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 61,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 62,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 63,
- "combination" : [ "value", "value" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 64,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 65,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 66,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 67,
- "combination" : [ "value", "value" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 68,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 69,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 70,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 71,
- "combination" : [ "value", "value" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 72,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 73,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 74,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 75,
- "combination" : [ "value", "value" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 76,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 77,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 78,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 79,
- "combination" : [ "value", "value" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 80,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 81,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 82,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 83,
- "combination" : [ "value", "value" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 84,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 85,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 86,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 87,
- "combination" : [ "value", "value" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Value mismatch"
- },
- {
- "n" : 88,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "merged" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "resolved" : {
- "require_auth_time" : true
- }
- },
- {
- "n" : 89,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Value mismatch"
- },
- {
- "n" : 90,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Value mismatch"
- },
- {
- "n" : 91,
- "combination" : [ "value", "value" ],
- "TA" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "merged" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "resolved" : {
- "require_auth_time" : false
- }
- },
- {
- "n" : 92,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "merged" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "resolved" : {
- "require_auth_time" : true
- }
- },
- {
- "n" : 93,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Value mismatch"
- },
- {
- "n" : 94,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Value mismatch"
- },
- {
- "n" : 95,
- "combination" : [ "value", "value" ],
- "TA" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "merged" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "resolved" : {
- "require_auth_time" : false
- }
- },
- {
- "n" : 96,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "merged" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "resolved" : {
- "require_auth_time" : true
- }
- },
- {
- "n" : 97,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Value mismatch"
- },
- {
- "n" : 98,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Value mismatch"
- },
- {
- "n" : 99,
- "combination" : [ "value", "value" ],
- "TA" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "merged" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "resolved" : {
- "require_auth_time" : false
- }
- },
- {
- "n" : 100,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "merged" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "resolved" : {
- "require_auth_time" : true
- }
- },
- {
- "n" : 101,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Value mismatch"
- },
- {
- "n" : 102,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Value mismatch"
- },
- {
- "n" : 103,
- "combination" : [ "value", "value" ],
- "TA" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "merged" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "resolved" : {
- "require_auth_time" : false
- }
- },
- {
- "n" : 104,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "merged" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "resolved" : {
- "require_auth_time" : true
- }
- },
- {
- "n" : 105,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Value mismatch"
- },
- {
- "n" : 106,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Value mismatch"
- },
- {
- "n" : 107,
- "combination" : [ "value", "value" ],
- "TA" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "merged" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "resolved" : {
- "require_auth_time" : false
- }
- },
- {
- "n" : 108,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "merged" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "resolved" : {
- "require_auth_time" : true
- }
- },
- {
- "n" : 109,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Value mismatch"
- },
- {
- "n" : 110,
- "combination" : [ "value", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Value mismatch"
- },
- {
- "n" : 111,
- "combination" : [ "value", "value" ],
- "TA" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "merged" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "resolved" : {
- "require_auth_time" : false
- }
- },
- {
- "n" : 112,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 113,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 114,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 115,
- "combination" : [ "value", "add" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 116,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 117,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 118,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 119,
- "combination" : [ "value", "add" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 120,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 121,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 122,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 123,
- "combination" : [ "value", "add" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 124,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 125,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 126,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 127,
- "combination" : [ "value", "add" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 128,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 129,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 130,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 131,
- "combination" : [ "value", "add" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 132,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 133,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 134,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 135,
- "combination" : [ "value", "add" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 136,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 137,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 138,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 139,
- "combination" : [ "value", "add" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 140,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 141,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 142,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 143,
- "combination" : [ "value", "add" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 144,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 145,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 146,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 147,
- "combination" : [ "value", "add" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 148,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 149,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 150,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 151,
- "combination" : [ "value", "add" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 152,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 153,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 154,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 155,
- "combination" : [ "value", "add" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 156,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 157,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 158,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 159,
- "combination" : [ "value", "add" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 160,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 161,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 162,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 163,
- "combination" : [ "value", "add" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 164,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 165,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 166,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 167,
- "combination" : [ "value", "add" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 168,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 169,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 170,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 171,
- "combination" : [ "value", "add" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 172,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 173,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 174,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 175,
- "combination" : [ "value", "add" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 176,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 177,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 178,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 179,
- "combination" : [ "value", "add" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 180,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 181,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 182,
- "combination" : [ "value", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 183,
- "combination" : [ "value", "add" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ add operator combination: The value must be a subset of the values of add"
- },
- {
- "n" : 184,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 185,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 186,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 187,
- "combination" : [ "value", "default" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "value" : "RS256"
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 188,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 189,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 190,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 191,
- "combination" : [ "value", "default" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "value" : "RS256"
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 192,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 193,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 194,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 195,
- "combination" : [ "value", "default" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "value" : "RS256"
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 196,
- "combination" : [ "value", "default" ],
- "TA" : {
- "logo_uri" : {
- "value" : null
- }
- },
- "INT" : {
- "logo_uri" : {
- "default" : "https:\/\/example.com\/logo.png"
- }
- },
- "metadata" : {
- "logo_uri" : "https:\/\/example.com\/logo.png"
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate logo_uri policy: Illegal value \/ default operator combination: The value must be non-null"
- },
- {
- "n" : 197,
- "combination" : [ "value", "default" ],
- "TA" : {
- "logo_uri" : {
- "value" : null
- }
- },
- "INT" : {
- "logo_uri" : {
- "default" : "https:\/\/example.com\/logo.png"
- }
- },
- "metadata" : {
- "logo_uri" : "https:\/\/images.example.com\/logo.jpg"
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate logo_uri policy: Illegal value \/ default operator combination: The value must be non-null"
- },
- {
- "n" : 198,
- "combination" : [ "value", "default" ],
- "TA" : {
- "logo_uri" : {
- "value" : null
- }
- },
- "INT" : {
- "logo_uri" : {
- "default" : "https:\/\/example.com\/logo.png"
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate logo_uri policy: Illegal value \/ default operator combination: The value must be non-null"
- },
- {
- "n" : 199,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 200,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 201,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 202,
- "combination" : [ "value", "default" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 203,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 204,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 205,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 206,
- "combination" : [ "value", "default" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 207,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 208,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 209,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 210,
- "combination" : [ "value", "default" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 211,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 212,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 213,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 214,
- "combination" : [ "value", "default" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 215,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 216,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 217,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 218,
- "combination" : [ "value", "default" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 219,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 220,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 221,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 222,
- "combination" : [ "value", "default" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 223,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 224,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 225,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 226,
- "combination" : [ "value", "default" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 227,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 228,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 229,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 230,
- "combination" : [ "value", "default" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 231,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 232,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 233,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 234,
- "combination" : [ "value", "default" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 235,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 236,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 237,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 238,
- "combination" : [ "value", "default" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 239,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 240,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 241,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 242,
- "combination" : [ "value", "default" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 243,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 244,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 245,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 246,
- "combination" : [ "value", "default" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 247,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 248,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 249,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 250,
- "combination" : [ "value", "default" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 251,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 252,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 253,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 254,
- "combination" : [ "value", "default" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 255,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 256,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 257,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 258,
- "combination" : [ "value", "default" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 259,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 260,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 261,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 262,
- "combination" : [ "value", "default" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 263,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 264,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 265,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 266,
- "combination" : [ "value", "default" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 267,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 268,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 269,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 270,
- "combination" : [ "value", "default" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 271,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "merged" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "resolved" : {
- "require_auth_time" : true
- }
- },
- {
- "n" : 272,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Value mismatch"
- },
- {
- "n" : 273,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Value mismatch"
- },
- {
- "n" : 274,
- "combination" : [ "value", "default" ],
- "TA" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "merged" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "resolved" : {
- "require_auth_time" : false
- }
- },
- {
- "n" : 275,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "merged" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "resolved" : {
- "require_auth_time" : true
- }
- },
- {
- "n" : 276,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Value mismatch"
- },
- {
- "n" : 277,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Value mismatch"
- },
- {
- "n" : 278,
- "combination" : [ "value", "default" ],
- "TA" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "merged" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "resolved" : {
- "require_auth_time" : false
- }
- },
- {
- "n" : 279,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "merged" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "resolved" : {
- "require_auth_time" : true
- }
- },
- {
- "n" : 280,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Value mismatch"
- },
- {
- "n" : 281,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Value mismatch"
- },
- {
- "n" : 282,
- "combination" : [ "value", "default" ],
- "TA" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "merged" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "resolved" : {
- "require_auth_time" : false
- }
- },
- {
- "n" : 283,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "merged" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "resolved" : {
- "require_auth_time" : true
- }
- },
- {
- "n" : 284,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Value mismatch"
- },
- {
- "n" : 285,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Value mismatch"
- },
- {
- "n" : 286,
- "combination" : [ "value", "default" ],
- "TA" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "merged" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "resolved" : {
- "require_auth_time" : false
- }
- },
- {
- "n" : 287,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "merged" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "resolved" : {
- "require_auth_time" : true
- }
- },
- {
- "n" : 288,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Value mismatch"
- },
- {
- "n" : 289,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Value mismatch"
- },
- {
- "n" : 290,
- "combination" : [ "value", "default" ],
- "TA" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "merged" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "resolved" : {
- "require_auth_time" : false
- }
- },
- {
- "n" : 291,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "merged" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "resolved" : {
- "require_auth_time" : true
- }
- },
- {
- "n" : 292,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Value mismatch"
- },
- {
- "n" : 293,
- "combination" : [ "value", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : true
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Value mismatch"
- },
- {
- "n" : 294,
- "combination" : [ "value", "default" ],
- "TA" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "merged" : {
- "require_auth_time" : {
- "value" : false
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "resolved" : {
- "require_auth_time" : false
- }
- },
- {
- "n" : 295,
- "combination" : [ "value", "one_of", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 296,
- "combination" : [ "value", "one_of", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 297,
- "combination" : [ "value", "one_of", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 298,
- "combination" : [ "value", "one_of" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "value" : "RS256"
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 299,
- "combination" : [ "value", "one_of", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 300,
- "combination" : [ "value", "one_of", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 301,
- "combination" : [ "value", "one_of", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 302,
- "combination" : [ "value", "one_of" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "value" : "RS256"
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 303,
- "combination" : [ "value", "one_of", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 304,
- "combination" : [ "value", "one_of", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 305,
- "combination" : [ "value", "one_of", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 306,
- "combination" : [ "value", "one_of" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "value" : "RS256"
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 307,
- "combination" : [ "value", "one_of" ],
- "TA" : {
- "logo_uri" : {
- "value" : null
- }
- },
- "INT" : {
- "logo_uri" : {
- "one_of" : [ "https:\/\/example.com\/logo.png", "https:\/\/example.org\/logo.png" ]
- }
- },
- "metadata" : {
- "logo_uri" : "https:\/\/example.com\/logo.png"
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate logo_uri policy: Illegal value \/ one_of operator combination: The value must be among the one_of values"
- },
- {
- "n" : 308,
- "combination" : [ "value", "one_of" ],
- "TA" : {
- "logo_uri" : {
- "value" : null
- }
- },
- "INT" : {
- "logo_uri" : {
- "one_of" : [ "https:\/\/example.com\/logo.png", "https:\/\/example.org\/logo.png" ]
- }
- },
- "metadata" : {
- "logo_uri" : "https:\/\/images.example.com\/logo.jpg"
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate logo_uri policy: Illegal value \/ one_of operator combination: The value must be among the one_of values"
- },
- {
- "n" : 309,
- "combination" : [ "value", "one_of" ],
- "TA" : {
- "logo_uri" : {
- "value" : null
- }
- },
- "INT" : {
- "logo_uri" : {
- "one_of" : [ "https:\/\/example.com\/logo.png", "https:\/\/example.org\/logo.png" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate logo_uri policy: Illegal value \/ one_of operator combination: The value must be among the one_of values"
- },
- {
- "n" : 310,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 311,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 312,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 313,
- "combination" : [ "value", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "value" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 314,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 315,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 316,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 317,
- "combination" : [ "value", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "value" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 318,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 319,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 320,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 321,
- "combination" : [ "value", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "value" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 322,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 323,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 324,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 325,
- "combination" : [ "value", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "value" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 326,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 327,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 328,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 329,
- "combination" : [ "value", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "value" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 330,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 331,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 332,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 333,
- "combination" : [ "value", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "value" : [ ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 334,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 335,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 336,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 337,
- "combination" : [ "value", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 338,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 339,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 340,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 341,
- "combination" : [ "value", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 342,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 343,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 344,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 345,
- "combination" : [ "value", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 346,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 347,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 348,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 349,
- "combination" : [ "value", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 350,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 351,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 352,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 353,
- "combination" : [ "value", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 354,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 355,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 356,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 357,
- "combination" : [ "value", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 358,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 359,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 360,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 361,
- "combination" : [ "value", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 362,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 363,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 364,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 365,
- "combination" : [ "value", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 366,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 367,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 368,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 369,
- "combination" : [ "value", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 370,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 371,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 372,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 373,
- "combination" : [ "value", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 374,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 375,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 376,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 377,
- "combination" : [ "value", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 378,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 379,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 380,
- "combination" : [ "value", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 381,
- "combination" : [ "value", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 382,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 383,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 384,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 385,
- "combination" : [ "value", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 386,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 387,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 388,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 389,
- "combination" : [ "value", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 390,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 391,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 392,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 393,
- "combination" : [ "value", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 394,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 395,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 396,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 397,
- "combination" : [ "value", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 398,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 399,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 400,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 401,
- "combination" : [ "value", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 402,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 403,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 404,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 405,
- "combination" : [ "value", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 406,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 407,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 408,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 409,
- "combination" : [ "value", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 410,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 411,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 412,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 413,
- "combination" : [ "value", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 414,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 415,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 416,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 417,
- "combination" : [ "value", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 418,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 419,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 420,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 421,
- "combination" : [ "value", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 422,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 423,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 424,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 425,
- "combination" : [ "value", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 426,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 427,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 428,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 429,
- "combination" : [ "value", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 430,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 431,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 432,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 433,
- "combination" : [ "value", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 434,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 435,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 436,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 437,
- "combination" : [ "value", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 438,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 439,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 440,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 441,
- "combination" : [ "value", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 442,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 443,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 444,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 445,
- "combination" : [ "value", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 446,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 447,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 448,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 449,
- "combination" : [ "value", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 450,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 451,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 452,
- "combination" : [ "value", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 453,
- "combination" : [ "value", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal value \/ superset_of operator combination: The value must be a superset of the values of superset_of"
- },
- {
- "n" : 454,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 455,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 456,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 457,
- "combination" : [ "add", "value" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 458,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 459,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 460,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 461,
- "combination" : [ "add", "value" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 462,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 463,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 464,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 465,
- "combination" : [ "add", "value" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 466,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 467,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 468,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 469,
- "combination" : [ "add", "value" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 470,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 471,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 472,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 473,
- "combination" : [ "add", "value" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 474,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 475,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 476,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 477,
- "combination" : [ "add", "value" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 478,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 479,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 480,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 481,
- "combination" : [ "add", "value" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 482,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 483,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 484,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 485,
- "combination" : [ "add", "value" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 486,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 487,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 488,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 489,
- "combination" : [ "add", "value" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 490,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 491,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 492,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 493,
- "combination" : [ "add", "value" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 494,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 495,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 496,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 497,
- "combination" : [ "add", "value" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 498,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 499,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 500,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 501,
- "combination" : [ "add", "value" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 502,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 503,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 504,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 505,
- "combination" : [ "add", "value" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 506,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 507,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 508,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 509,
- "combination" : [ "add", "value" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 510,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 511,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 512,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 513,
- "combination" : [ "add", "value" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 514,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 515,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 516,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 517,
- "combination" : [ "add", "value" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 518,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 519,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 520,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 521,
- "combination" : [ "add", "value" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 522,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 523,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 524,
- "combination" : [ "add", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 525,
- "combination" : [ "add", "value" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 526,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 527,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 528,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 529,
- "combination" : [ "add", "add" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 530,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code" ]
- }
- },
- {
- "n" : 531,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code" ]
- }
- },
- {
- "n" : 532,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code" ]
- }
- },
- {
- "n" : 533,
- "combination" : [ "add", "add" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code" ]
- }
- },
- {
- "n" : 534,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 535,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 536,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 537,
- "combination" : [ "add", "add" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 538,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 539,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 540,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 541,
- "combination" : [ "add", "add" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 542,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 543,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 544,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 545,
- "combination" : [ "add", "add" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 546,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 547,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 548,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 549,
- "combination" : [ "add", "add" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 550,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 551,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 552,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 553,
- "combination" : [ "add", "add" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 554,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 555,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 556,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 557,
- "combination" : [ "add", "add" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 558,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 559,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 560,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 561,
- "combination" : [ "add", "add" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 562,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password", "refresh_token" ]
- }
- },
- {
- "n" : 563,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password", "refresh_token" ]
- }
- },
- {
- "n" : 564,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password", "refresh_token" ]
- }
- },
- {
- "n" : 565,
- "combination" : [ "add", "add" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password", "refresh_token" ]
- }
- },
- {
- "n" : 566,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 567,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 568,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 569,
- "combination" : [ "add", "add" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 570,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 571,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 572,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 573,
- "combination" : [ "add", "add" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 574,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 575,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 576,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 577,
- "combination" : [ "add", "add" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 578,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 579,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 580,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 581,
- "combination" : [ "add", "add" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 582,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 583,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 584,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 585,
- "combination" : [ "add", "add" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 586,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password", "refresh_token" ]
- }
- },
- {
- "n" : 587,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password", "refresh_token" ]
- }
- },
- {
- "n" : 588,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password", "refresh_token" ]
- }
- },
- {
- "n" : 589,
- "combination" : [ "add", "add" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password", "refresh_token" ]
- }
- },
- {
- "n" : 590,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 591,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 592,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 593,
- "combination" : [ "add", "add" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 594,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 595,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 596,
- "combination" : [ "add", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 597,
- "combination" : [ "add", "add" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 598,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 599,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 600,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 601,
- "combination" : [ "add", "default" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 602,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password" ]
- }
- },
- {
- "n" : 603,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password" ]
- }
- },
- {
- "n" : 604,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password" ]
- }
- },
- {
- "n" : 605,
- "combination" : [ "add", "default" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password" ]
- }
- },
- {
- "n" : 606,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 607,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 608,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 609,
- "combination" : [ "add", "default" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 610,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 611,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 612,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 613,
- "combination" : [ "add", "default" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 614,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 615,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 616,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 617,
- "combination" : [ "add", "default" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 618,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 619,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 620,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 621,
- "combination" : [ "add", "default" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 622,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 623,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 624,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 625,
- "combination" : [ "add", "default" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 626,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password" ]
- }
- },
- {
- "n" : 627,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password" ]
- }
- },
- {
- "n" : 628,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password" ]
- }
- },
- {
- "n" : 629,
- "combination" : [ "add", "default" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password" ]
- }
- },
- {
- "n" : 630,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 631,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 632,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 633,
- "combination" : [ "add", "default" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 634,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 635,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 636,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 637,
- "combination" : [ "add", "default" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 638,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 639,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 640,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 641,
- "combination" : [ "add", "default" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 642,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 643,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 644,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 645,
- "combination" : [ "add", "default" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 646,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 647,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 648,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 649,
- "combination" : [ "add", "default" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 650,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code" ]
- }
- },
- {
- "n" : 651,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code" ]
- }
- },
- {
- "n" : 652,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code" ]
- }
- },
- {
- "n" : 653,
- "combination" : [ "add", "default" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code" ]
- }
- },
- {
- "n" : 654,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 655,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 656,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 657,
- "combination" : [ "add", "default" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 658,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 659,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 660,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 661,
- "combination" : [ "add", "default" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 662,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 663,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 664,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 665,
- "combination" : [ "add", "default" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 666,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 667,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 668,
- "combination" : [ "add", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 669,
- "combination" : [ "add", "default" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 670,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 671,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 672,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 673,
- "combination" : [ "add", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 674,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 675,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 676,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 677,
- "combination" : [ "add", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 678,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 679,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 680,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 681,
- "combination" : [ "add", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 682,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 683,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 684,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 685,
- "combination" : [ "add", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 686,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 687,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 688,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 689,
- "combination" : [ "add", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 690,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 691,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 692,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 693,
- "combination" : [ "add", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 694,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 695,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 696,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 697,
- "combination" : [ "add", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 698,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 699,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 700,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 701,
- "combination" : [ "add", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 702,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 703,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 704,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 705,
- "combination" : [ "add", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 706,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 707,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 708,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 709,
- "combination" : [ "add", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 710,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 711,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 712,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 713,
- "combination" : [ "add", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 714,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 715,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 716,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 717,
- "combination" : [ "add", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 718,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 719,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 720,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 721,
- "combination" : [ "add", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 722,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 723,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 724,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 725,
- "combination" : [ "add", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 726,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 727,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 728,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 729,
- "combination" : [ "add", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 730,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 731,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 732,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 733,
- "combination" : [ "add", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 734,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 735,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 736,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 737,
- "combination" : [ "add", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 738,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 739,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 740,
- "combination" : [ "add", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 741,
- "combination" : [ "add", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 742,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 743,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 744,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 745,
- "combination" : [ "add", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 746,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 747,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 748,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 749,
- "combination" : [ "add", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 750,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 751,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 752,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 753,
- "combination" : [ "add", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 754,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 755,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 756,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 757,
- "combination" : [ "add", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 758,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 759,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 760,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 761,
- "combination" : [ "add", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 762,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 763,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 764,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 765,
- "combination" : [ "add", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 766,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 767,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 768,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 769,
- "combination" : [ "add", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 770,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 771,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 772,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 773,
- "combination" : [ "add", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 774,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 775,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 776,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 777,
- "combination" : [ "add", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 778,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 779,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 780,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 781,
- "combination" : [ "add", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 782,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 783,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 784,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 785,
- "combination" : [ "add", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 786,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 787,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 788,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 789,
- "combination" : [ "add", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 790,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 791,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 792,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 793,
- "combination" : [ "add", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 794,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 795,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 796,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 797,
- "combination" : [ "add", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 798,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 799,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 800,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 801,
- "combination" : [ "add", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 802,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 803,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 804,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 805,
- "combination" : [ "add", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 806,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 807,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 808,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 809,
- "combination" : [ "add", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 810,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 811,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 812,
- "combination" : [ "add", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 813,
- "combination" : [ "add", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 814,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 815,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 816,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 817,
- "combination" : [ "default", "value" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "value" : "RS256"
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 818,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 819,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 820,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 821,
- "combination" : [ "default", "value" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "value" : "RS256"
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 822,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 823,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 824,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 825,
- "combination" : [ "default", "value" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "value" : "RS256"
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 826,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 827,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 828,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 829,
- "combination" : [ "default", "value" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 830,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 831,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 832,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 833,
- "combination" : [ "default", "value" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 834,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 835,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 836,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 837,
- "combination" : [ "default", "value" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 838,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 839,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 840,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 841,
- "combination" : [ "default", "value" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 842,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 843,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 844,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 845,
- "combination" : [ "default", "value" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 846,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 847,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 848,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 849,
- "combination" : [ "default", "value" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 850,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 851,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 852,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 853,
- "combination" : [ "default", "value" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 854,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 855,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 856,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 857,
- "combination" : [ "default", "value" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 858,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 859,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 860,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 861,
- "combination" : [ "default", "value" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 862,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 863,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 864,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 865,
- "combination" : [ "default", "value" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 866,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 867,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 868,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 869,
- "combination" : [ "default", "value" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 870,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 871,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 872,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 873,
- "combination" : [ "default", "value" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 874,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 875,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 876,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 877,
- "combination" : [ "default", "value" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 878,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 879,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 880,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 881,
- "combination" : [ "default", "value" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 882,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 883,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 884,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 885,
- "combination" : [ "default", "value" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 886,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 887,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 888,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 889,
- "combination" : [ "default", "value" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 890,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 891,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 892,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 893,
- "combination" : [ "default", "value" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 894,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 895,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 896,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 897,
- "combination" : [ "default", "value" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 898,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "merged" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "resolved" : {
- "require_auth_time" : true
- }
- },
- {
- "n" : 899,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Subordinate default operator does not match"
- },
- {
- "n" : 900,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Subordinate default operator does not match"
- },
- {
- "n" : 901,
- "combination" : [ "default", "value" ],
- "TA" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "merged" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "resolved" : {
- "require_auth_time" : true
- }
- },
- {
- "n" : 902,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "merged" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "resolved" : {
- "require_auth_time" : false
- }
- },
- {
- "n" : 903,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Subordinate default operator does not match"
- },
- {
- "n" : 904,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Subordinate default operator does not match"
- },
- {
- "n" : 905,
- "combination" : [ "default", "value" ],
- "TA" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "merged" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "resolved" : {
- "require_auth_time" : false
- }
- },
- {
- "n" : 906,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "merged" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "resolved" : {
- "require_auth_time" : true
- }
- },
- {
- "n" : 907,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Subordinate default operator does not match"
- },
- {
- "n" : 908,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Subordinate default operator does not match"
- },
- {
- "n" : 909,
- "combination" : [ "default", "value" ],
- "TA" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "merged" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "resolved" : {
- "require_auth_time" : true
- }
- },
- {
- "n" : 910,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "merged" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "resolved" : {
- "require_auth_time" : false
- }
- },
- {
- "n" : 911,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Subordinate default operator does not match"
- },
- {
- "n" : 912,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Subordinate default operator does not match"
- },
- {
- "n" : 913,
- "combination" : [ "default", "value" ],
- "TA" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "merged" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "resolved" : {
- "require_auth_time" : false
- }
- },
- {
- "n" : 914,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "merged" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "resolved" : {
- "require_auth_time" : true
- }
- },
- {
- "n" : 915,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Subordinate default operator does not match"
- },
- {
- "n" : 916,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Subordinate default operator does not match"
- },
- {
- "n" : 917,
- "combination" : [ "default", "value" ],
- "TA" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "merged" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "resolved" : {
- "require_auth_time" : true
- }
- },
- {
- "n" : 918,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "merged" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "resolved" : {
- "require_auth_time" : false
- }
- },
- {
- "n" : 919,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Subordinate default operator does not match"
- },
- {
- "n" : 920,
- "combination" : [ "default", "value", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Subordinate default operator does not match"
- },
- {
- "n" : 921,
- "combination" : [ "default", "value" ],
- "TA" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "merged" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "resolved" : {
- "require_auth_time" : false
- }
- },
- {
- "n" : 922,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 923,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 924,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 925,
- "combination" : [ "default", "add" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 926,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code" ]
- }
- },
- {
- "n" : 927,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code" ]
- }
- },
- {
- "n" : 928,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code" ]
- }
- },
- {
- "n" : 929,
- "combination" : [ "default", "add" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code" ]
- }
- },
- {
- "n" : 930,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 931,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 932,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 933,
- "combination" : [ "default", "add" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 934,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 935,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 936,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 937,
- "combination" : [ "default", "add" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 938,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 939,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 940,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 941,
- "combination" : [ "default", "add" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 942,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 943,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 944,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 945,
- "combination" : [ "default", "add" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "default" : [ ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 946,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 947,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 948,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 949,
- "combination" : [ "default", "add" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 950,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 951,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 952,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 953,
- "combination" : [ "default", "add" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 954,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 955,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 956,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 957,
- "combination" : [ "default", "add" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 958,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password", "refresh_token" ]
- }
- },
- {
- "n" : 959,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password", "refresh_token" ]
- }
- },
- {
- "n" : 960,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password", "refresh_token" ]
- }
- },
- {
- "n" : 961,
- "combination" : [ "default", "add" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password", "refresh_token" ]
- }
- },
- {
- "n" : 962,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 963,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 964,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 965,
- "combination" : [ "default", "add" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 966,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 967,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 968,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 969,
- "combination" : [ "default", "add" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 970,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 971,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 972,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 973,
- "combination" : [ "default", "add" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 974,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 975,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 976,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 977,
- "combination" : [ "default", "add" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 978,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 979,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 980,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 981,
- "combination" : [ "default", "add" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 982,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password", "refresh_token" ]
- }
- },
- {
- "n" : 983,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password", "refresh_token" ]
- }
- },
- {
- "n" : 984,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password", "refresh_token" ]
- }
- },
- {
- "n" : 985,
- "combination" : [ "default", "add" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password", "refresh_token" ]
- }
- },
- {
- "n" : 986,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 987,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 988,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 989,
- "combination" : [ "default", "add" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 990,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 991,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 992,
- "combination" : [ "default", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 993,
- "combination" : [ "default", "add" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 994,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 995,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 996,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 997,
- "combination" : [ "default", "default" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 998,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "EdDSA"
- }
- },
- {
- "n" : 999,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "EdDSA"
- }
- },
- {
- "n" : 1000,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "EdDSA"
- }
- },
- {
- "n" : 1001,
- "combination" : [ "default", "default" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "EdDSA"
- }
- },
- {
- "n" : 1002,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1003,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1004,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1005,
- "combination" : [ "default", "default" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1006,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1007,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1008,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1009,
- "combination" : [ "default", "default" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1010,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1011,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1012,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1013,
- "combination" : [ "default", "default" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1014,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1015,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1016,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1017,
- "combination" : [ "default", "default" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1018,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1019,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1020,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1021,
- "combination" : [ "default", "default" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1022,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1023,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1024,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1025,
- "combination" : [ "default", "default" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1026,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1027,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1028,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1029,
- "combination" : [ "default", "default" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1030,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1031,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1032,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1033,
- "combination" : [ "default", "default" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1034,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1035,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1036,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1037,
- "combination" : [ "default", "default" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1038,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1039,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1040,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1041,
- "combination" : [ "default", "default" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1042,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1043,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1044,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1045,
- "combination" : [ "default", "default" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1046,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1047,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1048,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1049,
- "combination" : [ "default", "default" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1050,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1051,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1052,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1053,
- "combination" : [ "default", "default" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1054,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1055,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1056,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1057,
- "combination" : [ "default", "default" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1058,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1059,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1060,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1061,
- "combination" : [ "default", "default" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1062,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1063,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1064,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1065,
- "combination" : [ "default", "default" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1066,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1067,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1068,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1069,
- "combination" : [ "default", "default" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1070,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1071,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1072,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1073,
- "combination" : [ "default", "default" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1074,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1075,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1076,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1077,
- "combination" : [ "default", "default" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Subordinate default operator does not match"
- },
- {
- "n" : 1078,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "merged" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "resolved" : {
- "require_auth_time" : true
- }
- },
- {
- "n" : 1079,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Subordinate default operator does not match"
- },
- {
- "n" : 1080,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Subordinate default operator does not match"
- },
- {
- "n" : 1081,
- "combination" : [ "default", "default" ],
- "TA" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "merged" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "resolved" : {
- "require_auth_time" : true
- }
- },
- {
- "n" : 1082,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "merged" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "resolved" : {
- "require_auth_time" : false
- }
- },
- {
- "n" : 1083,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Subordinate default operator does not match"
- },
- {
- "n" : 1084,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Subordinate default operator does not match"
- },
- {
- "n" : 1085,
- "combination" : [ "default", "default" ],
- "TA" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "merged" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "resolved" : {
- "require_auth_time" : false
- }
- },
- {
- "n" : 1086,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "merged" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "resolved" : {
- "require_auth_time" : true
- }
- },
- {
- "n" : 1087,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Subordinate default operator does not match"
- },
- {
- "n" : 1088,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Subordinate default operator does not match"
- },
- {
- "n" : 1089,
- "combination" : [ "default", "default" ],
- "TA" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "merged" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "resolved" : {
- "require_auth_time" : true
- }
- },
- {
- "n" : 1090,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "merged" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "resolved" : {
- "require_auth_time" : false
- }
- },
- {
- "n" : 1091,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Subordinate default operator does not match"
- },
- {
- "n" : 1092,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Subordinate default operator does not match"
- },
- {
- "n" : 1093,
- "combination" : [ "default", "default" ],
- "TA" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "merged" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "resolved" : {
- "require_auth_time" : false
- }
- },
- {
- "n" : 1094,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "merged" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "resolved" : {
- "require_auth_time" : true
- }
- },
- {
- "n" : 1095,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Subordinate default operator does not match"
- },
- {
- "n" : 1096,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Subordinate default operator does not match"
- },
- {
- "n" : 1097,
- "combination" : [ "default", "default" ],
- "TA" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "merged" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "metadata" : {
- "require_auth_time" : true
- },
- "resolved" : {
- "require_auth_time" : true
- }
- },
- {
- "n" : 1098,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "merged" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "resolved" : {
- "require_auth_time" : false
- }
- },
- {
- "n" : 1099,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Subordinate default operator does not match"
- },
- {
- "n" : 1100,
- "combination" : [ "default", "default", "essential" ],
- "TA" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : true
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate require_auth_time policy: Subordinate default operator does not match"
- },
- {
- "n" : 1101,
- "combination" : [ "default", "default" ],
- "TA" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "INT" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "merged" : {
- "require_auth_time" : {
- "default" : false
- }
- },
- "metadata" : {
- "require_auth_time" : false
- },
- "resolved" : {
- "require_auth_time" : false
- }
- },
- {
- "n" : 1102,
- "combination" : [ "default", "one_of", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1103,
- "combination" : [ "default", "one_of", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1104,
- "combination" : [ "default", "one_of", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1105,
- "combination" : [ "default", "one_of" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1106,
- "combination" : [ "default", "one_of", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid id_token_signed_response_alg: Failed one_of check"
- },
- {
- "n" : 1107,
- "combination" : [ "default", "one_of", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid id_token_signed_response_alg: Failed one_of check"
- },
- {
- "n" : 1108,
- "combination" : [ "default", "one_of", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid id_token_signed_response_alg: Failed one_of check"
- },
- {
- "n" : 1109,
- "combination" : [ "default", "one_of" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid id_token_signed_response_alg: Failed one_of check"
- },
- {
- "n" : 1110,
- "combination" : [ "default", "one_of", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1111,
- "combination" : [ "default", "one_of", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1112,
- "combination" : [ "default", "one_of", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1113,
- "combination" : [ "default", "one_of" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1114,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1115,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1116,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1117,
- "combination" : [ "default", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1118,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1119,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1120,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1121,
- "combination" : [ "default", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1122,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1123,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1124,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1125,
- "combination" : [ "default", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1126,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1127,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1128,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1129,
- "combination" : [ "default", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1130,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1131,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1132,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1133,
- "combination" : [ "default", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1134,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1135,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1136,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1137,
- "combination" : [ "default", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1138,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1139,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1140,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1141,
- "combination" : [ "default", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1142,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1143,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1144,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1145,
- "combination" : [ "default", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1146,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1147,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1148,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1149,
- "combination" : [ "default", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1150,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1151,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1152,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1153,
- "combination" : [ "default", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1154,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1155,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1156,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1157,
- "combination" : [ "default", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1158,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1159,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1160,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1161,
- "combination" : [ "default", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1162,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1163,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1164,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1165,
- "combination" : [ "default", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1166,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1167,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1168,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1169,
- "combination" : [ "default", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1170,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1171,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1172,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1173,
- "combination" : [ "default", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1174,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1175,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1176,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1177,
- "combination" : [ "default", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1178,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1179,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1180,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1181,
- "combination" : [ "default", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1182,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1183,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1184,
- "combination" : [ "default", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1185,
- "combination" : [ "default", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1186,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1187,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1188,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1189,
- "combination" : [ "default", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1190,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1191,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1192,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1193,
- "combination" : [ "default", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1194,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1195,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1196,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1197,
- "combination" : [ "default", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1198,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 1199,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 1200,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 1201,
- "combination" : [ "default", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 1202,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1203,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1204,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1205,
- "combination" : [ "default", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1206,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1207,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1208,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1209,
- "combination" : [ "default", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1210,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1211,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1212,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1213,
- "combination" : [ "default", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1214,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1215,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1216,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1217,
- "combination" : [ "default", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1218,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1219,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1220,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1221,
- "combination" : [ "default", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1222,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1223,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1224,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1225,
- "combination" : [ "default", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1226,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1227,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1228,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1229,
- "combination" : [ "default", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1230,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1231,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1232,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1233,
- "combination" : [ "default", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ ],
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1234,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1235,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1236,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1237,
- "combination" : [ "default", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1238,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1239,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1240,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1241,
- "combination" : [ "default", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1242,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1243,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1244,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1245,
- "combination" : [ "default", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1246,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1247,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1248,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1249,
- "combination" : [ "default", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1250,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1251,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1252,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1253,
- "combination" : [ "default", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1254,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1255,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1256,
- "combination" : [ "default", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1257,
- "combination" : [ "default", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1258,
- "combination" : [ "one_of", "value", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1259,
- "combination" : [ "one_of", "value", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1260,
- "combination" : [ "one_of", "value", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1261,
- "combination" : [ "one_of", "value" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "value" : "RS256"
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1262,
- "combination" : [ "one_of", "value", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1263,
- "combination" : [ "one_of", "value", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1264,
- "combination" : [ "one_of", "value", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1265,
- "combination" : [ "one_of", "value" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "value" : "RS256"
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1266,
- "combination" : [ "one_of", "value", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1267,
- "combination" : [ "one_of", "value", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1268,
- "combination" : [ "one_of", "value", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "value" : "RS256",
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1269,
- "combination" : [ "one_of", "value" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "value" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "value" : "RS256"
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1270,
- "combination" : [ "one_of", "default", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1271,
- "combination" : [ "one_of", "default", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1272,
- "combination" : [ "one_of", "default", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1273,
- "combination" : [ "one_of", "default" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1274,
- "combination" : [ "one_of", "default", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid id_token_signed_response_alg: Failed one_of check"
- },
- {
- "n" : 1275,
- "combination" : [ "one_of", "default", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid id_token_signed_response_alg: Failed one_of check"
- },
- {
- "n" : 1276,
- "combination" : [ "one_of", "default", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid id_token_signed_response_alg: Failed one_of check"
- },
- {
- "n" : 1277,
- "combination" : [ "one_of", "default" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid id_token_signed_response_alg: Failed one_of check"
- },
- {
- "n" : 1278,
- "combination" : [ "one_of", "default", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1279,
- "combination" : [ "one_of", "default", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1280,
- "combination" : [ "one_of", "default", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1281,
- "combination" : [ "one_of", "default" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256"
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "default" : "RS256",
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1282,
- "combination" : [ "one_of", "one_of", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1283,
- "combination" : [ "one_of", "one_of", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1284,
- "combination" : [ "one_of", "one_of", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1285,
- "combination" : [ "one_of", "one_of" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "RS256"
- },
- "resolved" : {
- "id_token_signed_response_alg" : "RS256"
- }
- },
- {
- "n" : 1286,
- "combination" : [ "one_of", "one_of", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid id_token_signed_response_alg: Failed one_of check"
- },
- {
- "n" : 1287,
- "combination" : [ "one_of", "one_of", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid id_token_signed_response_alg: Failed one_of check"
- },
- {
- "n" : 1288,
- "combination" : [ "one_of", "one_of", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid id_token_signed_response_alg: Failed one_of check"
- },
- {
- "n" : 1289,
- "combination" : [ "one_of", "one_of" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "metadata" : {
- "id_token_signed_response_alg" : "EdDSA"
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid id_token_signed_response_alg: Failed one_of check"
- },
- {
- "n" : 1290,
- "combination" : [ "one_of", "one_of", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid id_token_signed_response_alg: Failed essential check"
- },
- {
- "n" : 1291,
- "combination" : [ "one_of", "one_of", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid id_token_signed_response_alg: Failed essential check"
- },
- {
- "n" : 1292,
- "combination" : [ "one_of", "one_of", "essential" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid id_token_signed_response_alg: Failed essential check"
- },
- {
- "n" : 1293,
- "combination" : [ "one_of", "one_of" ],
- "TA" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "INT" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "merged" : {
- "id_token_signed_response_alg" : {
- "one_of" : [ "RS256", "ES256" ]
- }
- },
- "metadata" : { },
- "resolved" : { }
- },
- {
- "n" : 1294,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1295,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1296,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1297,
- "combination" : [ "subset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1298,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1299,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1300,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1301,
- "combination" : [ "subset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1302,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1303,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1304,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1305,
- "combination" : [ "subset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1306,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1307,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1308,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1309,
- "combination" : [ "subset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1310,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1311,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1312,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1313,
- "combination" : [ "subset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1314,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1315,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1316,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1317,
- "combination" : [ "subset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1318,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1319,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1320,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1321,
- "combination" : [ "subset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1322,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1323,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1324,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1325,
- "combination" : [ "subset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1326,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1327,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1328,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1329,
- "combination" : [ "subset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1330,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1331,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1332,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1333,
- "combination" : [ "subset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1334,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1335,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1336,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1337,
- "combination" : [ "subset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1338,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1339,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1340,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1341,
- "combination" : [ "subset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1342,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1343,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1344,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1345,
- "combination" : [ "subset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1346,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1347,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1348,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1349,
- "combination" : [ "subset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1350,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1351,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1352,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1353,
- "combination" : [ "subset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1354,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1355,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1356,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1357,
- "combination" : [ "subset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1358,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1359,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1360,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1361,
- "combination" : [ "subset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1362,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1363,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1364,
- "combination" : [ "subset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1365,
- "combination" : [ "subset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ value operator combination: The value must be a subset of the values of subset_of"
- },
- {
- "n" : 1366,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1367,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1368,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1369,
- "combination" : [ "subset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1370,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1371,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1372,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1373,
- "combination" : [ "subset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1374,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1375,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1376,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1377,
- "combination" : [ "subset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1378,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1379,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1380,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1381,
- "combination" : [ "subset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1382,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1383,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1384,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1385,
- "combination" : [ "subset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1386,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1387,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1388,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1389,
- "combination" : [ "subset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1390,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1391,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1392,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1393,
- "combination" : [ "subset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1394,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1395,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1396,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1397,
- "combination" : [ "subset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1398,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1399,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1400,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1401,
- "combination" : [ "subset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1402,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1403,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1404,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1405,
- "combination" : [ "subset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1406,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1407,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1408,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1409,
- "combination" : [ "subset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1410,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1411,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1412,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1413,
- "combination" : [ "subset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1414,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1415,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1416,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1417,
- "combination" : [ "subset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1418,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1419,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1420,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1421,
- "combination" : [ "subset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1422,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1423,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1424,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1425,
- "combination" : [ "subset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1426,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1427,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1428,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1429,
- "combination" : [ "subset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1430,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1431,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1432,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1433,
- "combination" : [ "subset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1434,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1435,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1436,
- "combination" : [ "subset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1437,
- "combination" : [ "subset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ add operator combination: The values of add must be a subset of the values of subset_of"
- },
- {
- "n" : 1438,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1439,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1440,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1441,
- "combination" : [ "subset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1442,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1443,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1444,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1445,
- "combination" : [ "subset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1446,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1447,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1448,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1449,
- "combination" : [ "subset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1450,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1451,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1452,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1453,
- "combination" : [ "subset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1454,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1455,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1456,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1457,
- "combination" : [ "subset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1458,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1459,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1460,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1461,
- "combination" : [ "subset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "subset_of" : [ ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1462,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1463,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1464,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1465,
- "combination" : [ "subset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1466,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1467,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1468,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1469,
- "combination" : [ "subset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1470,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1471,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1472,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1473,
- "combination" : [ "subset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1474,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1475,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1476,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1477,
- "combination" : [ "subset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1478,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1479,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1480,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1481,
- "combination" : [ "subset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1482,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1483,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1484,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1485,
- "combination" : [ "subset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1486,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1487,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1488,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1489,
- "combination" : [ "subset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1490,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1491,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1492,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1493,
- "combination" : [ "subset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1494,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1495,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1496,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1497,
- "combination" : [ "subset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1498,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1499,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1500,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1501,
- "combination" : [ "subset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1502,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1503,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1504,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1505,
- "combination" : [ "subset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1506,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1507,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1508,
- "combination" : [ "subset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1509,
- "combination" : [ "subset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1510,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1511,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1512,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1513,
- "combination" : [ "subset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1514,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1515,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1516,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1517,
- "combination" : [ "subset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1518,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1519,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1520,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1521,
- "combination" : [ "subset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1522,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1523,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1524,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1525,
- "combination" : [ "subset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1526,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1527,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1528,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1529,
- "combination" : [ "subset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1530,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed essential check"
- },
- {
- "n" : 1531,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed essential check"
- },
- {
- "n" : 1532,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed essential check"
- },
- {
- "n" : 1533,
- "combination" : [ "subset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "metadata" : { },
- "resolved" : { }
- },
- {
- "n" : 1534,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1535,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1536,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1537,
- "combination" : [ "subset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1538,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1539,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1540,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1541,
- "combination" : [ "subset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1542,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1543,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1544,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1545,
- "combination" : [ "subset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1546,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1547,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1548,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1549,
- "combination" : [ "subset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1550,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1551,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1552,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1553,
- "combination" : [ "subset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1554,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed essential check"
- },
- {
- "n" : 1555,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed essential check"
- },
- {
- "n" : 1556,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed essential check"
- },
- {
- "n" : 1557,
- "combination" : [ "subset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "metadata" : { },
- "resolved" : { }
- },
- {
- "n" : 1558,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1559,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1560,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1561,
- "combination" : [ "subset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1562,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1563,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1564,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1565,
- "combination" : [ "subset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1566,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1567,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1568,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1569,
- "combination" : [ "subset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1570,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1571,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1572,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1573,
- "combination" : [ "subset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1574,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1575,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1576,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1577,
- "combination" : [ "subset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1578,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed essential check"
- },
- {
- "n" : 1579,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed essential check"
- },
- {
- "n" : 1580,
- "combination" : [ "subset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed essential check"
- },
- {
- "n" : 1581,
- "combination" : [ "subset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "resolved" : { }
- },
- {
- "n" : 1582,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1583,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1584,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1585,
- "combination" : [ "subset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1586,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1587,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1588,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1589,
- "combination" : [ "subset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1590,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1591,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1592,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1593,
- "combination" : [ "subset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1594,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1595,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1596,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1597,
- "combination" : [ "subset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1598,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1599,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1600,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1601,
- "combination" : [ "subset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1602,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1603,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1604,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1605,
- "combination" : [ "subset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1606,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1607,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1608,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1609,
- "combination" : [ "subset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1610,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1611,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1612,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1613,
- "combination" : [ "subset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1614,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1615,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1616,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1617,
- "combination" : [ "subset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1618,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1619,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1620,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1621,
- "combination" : [ "subset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1622,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1623,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1624,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1625,
- "combination" : [ "subset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1626,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1627,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1628,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1629,
- "combination" : [ "subset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1630,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1631,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1632,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1633,
- "combination" : [ "subset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1634,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1635,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1636,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1637,
- "combination" : [ "subset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1638,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1639,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1640,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1641,
- "combination" : [ "subset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1642,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1643,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1644,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1645,
- "combination" : [ "subset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1646,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1647,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1648,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1649,
- "combination" : [ "subset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1650,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1651,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1652,
- "combination" : [ "subset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1653,
- "combination" : [ "subset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate grant_types policy: Illegal subset_of \/ superset_of operator combination: The values of subset_of must be a superset of the values of superset_of"
- },
- {
- "n" : 1654,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1655,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1656,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1657,
- "combination" : [ "superset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1658,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1659,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1660,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1661,
- "combination" : [ "superset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1662,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1663,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1664,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1665,
- "combination" : [ "superset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1666,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1667,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1668,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1669,
- "combination" : [ "superset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1670,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1671,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1672,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1673,
- "combination" : [ "superset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1674,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1675,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1676,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1677,
- "combination" : [ "superset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1678,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1679,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1680,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1681,
- "combination" : [ "superset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1682,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1683,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1684,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1685,
- "combination" : [ "superset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1686,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1687,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1688,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1689,
- "combination" : [ "superset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1690,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1691,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1692,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1693,
- "combination" : [ "superset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1694,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1695,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1696,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1697,
- "combination" : [ "superset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1698,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1699,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1700,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1701,
- "combination" : [ "superset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1702,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1703,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1704,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1705,
- "combination" : [ "superset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1706,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1707,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1708,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1709,
- "combination" : [ "superset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1710,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1711,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1712,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1713,
- "combination" : [ "superset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1714,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1715,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1716,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1717,
- "combination" : [ "superset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1718,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1719,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1720,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1721,
- "combination" : [ "superset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1722,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1723,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1724,
- "combination" : [ "superset_of", "value", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1725,
- "combination" : [ "superset_of", "value" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "value" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1726,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1727,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1728,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1729,
- "combination" : [ "superset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1730,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code" ]
- }
- },
- {
- "n" : 1731,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code" ]
- }
- },
- {
- "n" : 1732,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code" ]
- }
- },
- {
- "n" : 1733,
- "combination" : [ "superset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code" ]
- }
- },
- {
- "n" : 1734,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1735,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1736,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1737,
- "combination" : [ "superset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1738,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 1739,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 1740,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 1741,
- "combination" : [ "superset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 1742,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1743,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1744,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1745,
- "combination" : [ "superset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1746,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1747,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1748,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1749,
- "combination" : [ "superset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code" ],
- "superset_of" : [ ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1750,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1751,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1752,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1753,
- "combination" : [ "superset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1754,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1755,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1756,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1757,
- "combination" : [ "superset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1758,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1759,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1760,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1761,
- "combination" : [ "superset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1762,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password", "refresh_token" ]
- }
- },
- {
- "n" : 1763,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password", "refresh_token" ]
- }
- },
- {
- "n" : 1764,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password", "refresh_token" ]
- }
- },
- {
- "n" : 1765,
- "combination" : [ "superset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password", "refresh_token" ]
- }
- },
- {
- "n" : 1766,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1767,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1768,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1769,
- "combination" : [ "superset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1770,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1771,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1772,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1773,
- "combination" : [ "superset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1774,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1775,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1776,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1777,
- "combination" : [ "superset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1778,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1779,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1780,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1781,
- "combination" : [ "superset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password", "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1782,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1783,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1784,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1785,
- "combination" : [ "superset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1786,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password", "refresh_token" ]
- }
- },
- {
- "n" : 1787,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password", "refresh_token" ]
- }
- },
- {
- "n" : 1788,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password", "refresh_token" ]
- }
- },
- {
- "n" : 1789,
- "combination" : [ "superset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password", "refresh_token" ]
- }
- },
- {
- "n" : 1790,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1791,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1792,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1793,
- "combination" : [ "superset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1794,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1795,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1796,
- "combination" : [ "superset_of", "add", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1797,
- "combination" : [ "superset_of", "add" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "add" : [ "authorization_code", "refresh_token" ],
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1798,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1799,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1800,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1801,
- "combination" : [ "superset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1802,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password" ]
- }
- },
- {
- "n" : 1803,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password" ]
- }
- },
- {
- "n" : 1804,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password" ]
- }
- },
- {
- "n" : 1805,
- "combination" : [ "superset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password" ]
- }
- },
- {
- "n" : 1806,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1807,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1808,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1809,
- "combination" : [ "superset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1810,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 1811,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 1812,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 1813,
- "combination" : [ "superset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 1814,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1815,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1816,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1817,
- "combination" : [ "superset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1818,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1819,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1820,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1821,
- "combination" : [ "superset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1822,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1823,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1824,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1825,
- "combination" : [ "superset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1826,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password" ]
- }
- },
- {
- "n" : 1827,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password" ]
- }
- },
- {
- "n" : 1828,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password" ]
- }
- },
- {
- "n" : 1829,
- "combination" : [ "superset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ "password" ]
- }
- },
- {
- "n" : 1830,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1831,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1832,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1833,
- "combination" : [ "superset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1834,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 1835,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 1836,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 1837,
- "combination" : [ "superset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 1838,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1839,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1840,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1841,
- "combination" : [ "superset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1842,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1843,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1844,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1845,
- "combination" : [ "superset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1846,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1847,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1848,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1849,
- "combination" : [ "superset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1850,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1851,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1852,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1853,
- "combination" : [ "superset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1854,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1855,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1856,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1857,
- "combination" : [ "superset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1858,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 1859,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 1860,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 1861,
- "combination" : [ "superset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 1862,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1863,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1864,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1865,
- "combination" : [ "superset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1866,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1867,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1868,
- "combination" : [ "superset_of", "default", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1869,
- "combination" : [ "superset_of", "default" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "default" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1870,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1871,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1872,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1873,
- "combination" : [ "superset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1874,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1875,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1876,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1877,
- "combination" : [ "superset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1878,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1879,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1880,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1881,
- "combination" : [ "superset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1882,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1883,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1884,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1885,
- "combination" : [ "superset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1886,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1887,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1888,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1889,
- "combination" : [ "superset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1890,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed essential check"
- },
- {
- "n" : 1891,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed essential check"
- },
- {
- "n" : 1892,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed essential check"
- },
- {
- "n" : 1893,
- "combination" : [ "superset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "resolved" : { }
- },
- {
- "n" : 1894,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1895,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1896,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1897,
- "combination" : [ "superset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1898,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1899,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1900,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1901,
- "combination" : [ "superset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1902,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1903,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1904,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1905,
- "combination" : [ "superset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1906,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1907,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1908,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1909,
- "combination" : [ "superset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1910,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1911,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1912,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1913,
- "combination" : [ "superset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "resolved" : {
- "grant_types" : [ ]
- }
- },
- {
- "n" : 1914,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed essential check"
- },
- {
- "n" : 1915,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed essential check"
- },
- {
- "n" : 1916,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed essential check"
- },
- {
- "n" : 1917,
- "combination" : [ "superset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "resolved" : { }
- },
- {
- "n" : 1918,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1919,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1920,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1921,
- "combination" : [ "superset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1922,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1923,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1924,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1925,
- "combination" : [ "superset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1926,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1927,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1928,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1929,
- "combination" : [ "superset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1930,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1931,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1932,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1933,
- "combination" : [ "superset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1934,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1935,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1936,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1937,
- "combination" : [ "superset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1938,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed essential check"
- },
- {
- "n" : 1939,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed essential check"
- },
- {
- "n" : 1940,
- "combination" : [ "superset_of", "subset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed essential check"
- },
- {
- "n" : 1941,
- "combination" : [ "superset_of", "subset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "subset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "resolved" : { }
- },
- {
- "n" : 1942,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1943,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1944,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1945,
- "combination" : [ "superset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code" ]
- }
- },
- {
- "n" : 1946,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1947,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1948,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1949,
- "combination" : [ "superset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1950,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1951,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1952,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1953,
- "combination" : [ "superset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1954,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 1955,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 1956,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 1957,
- "combination" : [ "superset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "password" ]
- }
- },
- {
- "n" : 1958,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1959,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1960,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1961,
- "combination" : [ "superset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1962,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed essential check"
- },
- {
- "n" : 1963,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed essential check"
- },
- {
- "n" : 1964,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed essential check"
- },
- {
- "n" : 1965,
- "combination" : [ "superset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "metadata" : { },
- "resolved" : { }
- },
- {
- "n" : 1966,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1967,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1968,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1969,
- "combination" : [ "superset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1970,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1971,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1972,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1973,
- "combination" : [ "superset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1974,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1975,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1976,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1977,
- "combination" : [ "superset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1978,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1979,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1980,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1981,
- "combination" : [ "superset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1982,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1983,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1984,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1985,
- "combination" : [ "superset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1986,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed essential check"
- },
- {
- "n" : 1987,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed essential check"
- },
- {
- "n" : 1988,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed essential check"
- },
- {
- "n" : 1989,
- "combination" : [ "superset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "resolved" : { }
- },
- {
- "n" : 1990,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1991,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1992,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1993,
- "combination" : [ "superset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1994,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1995,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1996,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1997,
- "combination" : [ "superset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 1998,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 1999,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 2000,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 2001,
- "combination" : [ "superset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- },
- "resolved" : {
- "grant_types" : [ "authorization_code", "refresh_token" ]
- }
- },
- {
- "n" : 2002,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 2003,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 2004,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 2005,
- "combination" : [ "superset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ "authorization_code", "password" ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 2006,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 2007,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 2008,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 2009,
- "combination" : [ "superset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : {
- "grant_types" : [ ]
- },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed superset_of check"
- },
- {
- "n" : 2010,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed essential check"
- },
- {
- "n" : 2011,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ],
- "essential" : true
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed essential check"
- },
- {
- "n" : 2012,
- "combination" : [ "superset_of", "superset_of", "essential" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ],
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_metadata",
- "error_description" : "Invalid grant_types: Failed essential check"
- },
- {
- "n" : 2013,
- "combination" : [ "superset_of", "superset_of" ],
- "TA" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code" ]
- }
- },
- "INT" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "merged" : {
- "grant_types" : {
- "superset_of" : [ "authorization_code", "refresh_token" ]
- }
- },
- "metadata" : { },
- "resolved" : { }
- },
- {
- "n" : 2014,
- "combination" : [ "value", "essential" ],
- "TA" : {
- "logo_uri" : {
- "value" : null
- }
- },
- "INT" : {
- "logo_uri" : {
- "essential" : true
- }
- },
- "metadata" : {
- "logo_uri" : "https:\/\/example.com\/logo.png"
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate logo_uri policy: Illegal value \/ essential operator combination: The value must be non-null when essential is true"
- },
- {
- "n" : 2015,
- "combination" : [ "value", "essential" ],
- "TA" : {
- "logo_uri" : {
- "value" : null
- }
- },
- "INT" : {
- "logo_uri" : {
- "essential" : true
- }
- },
- "metadata" : {
- "logo_uri" : "https:\/\/images.example.com\/logo.jpg"
- },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate logo_uri policy: Illegal value \/ essential operator combination: The value must be non-null when essential is true"
- },
- {
- "n" : 2016,
- "combination" : [ "value", "essential" ],
- "TA" : {
- "logo_uri" : {
- "value" : null
- }
- },
- "INT" : {
- "logo_uri" : {
- "essential" : true
- }
- },
- "metadata" : { },
- "error" : "invalid_policy",
- "error_description" : "Subordinate policy merge error: Illegal subordinate logo_uri policy: Illegal value \/ essential operator combination: The value must be non-null when essential is true"
- },
- {
- "n" : 2017,
- "combination" : [ "value" ],
- "TA" : {
- "logo_uri" : {
- "value" : null
- }
- },
- "INT" : {
- "logo_uri" : {
- "essential" : false
- }
- },
- "merged" : {
- "logo_uri" : {
- "value" : null,
- "essential" : false
- }
- },
- "metadata" : {
- "logo_uri" : "https:\/\/example.com\/logo.png"
- },
- "resolved" : { }
- },
- {
- "n" : 2018,
- "combination" : [ "value" ],
- "TA" : {
- "logo_uri" : {
- "value" : null
- }
- },
- "INT" : {
- "logo_uri" : {
- "essential" : false
- }
- },
- "merged" : {
- "logo_uri" : {
- "value" : null,
- "essential" : false
- }
- },
- "metadata" : {
- "logo_uri" : "https:\/\/images.example.com\/logo.jpg"
- },
- "resolved" : { }
- },
- {
- "n" : 2019,
- "combination" : [ "value" ],
- "TA" : {
- "logo_uri" : {
- "value" : null
- }
- },
- "INT" : {
- "logo_uri" : {
- "essential" : false
- }
- },
- "merged" : {
- "logo_uri" : {
- "value" : null,
- "essential" : false
- }
- },
- "metadata" : { },
- "resolved" : { }
- }
-]
\ No newline at end of file
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.