This is an automated email from the git hooks/post-receive script.
hjmikkon pushed a commit to branch dev/JOIDC-222
in repository java-idp-oidc.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-oidc.git;a=commit;h=15292e6bc4309a0d7298393c17630b64f2792c75
commit 15292e6bc4309a0d7298393c17630b64f2792c75
Author: Henri Mikkonen <henri.mikkonen at iki.fi>
AuthorDate: Fri May 9 16:04:07 2025 +0300
JOIDC-222 - Support for OpenID Federation
https://shibboleth.atlassian.net/browse/JOIDC-222
- Updated the metadata policy merging and enforcement logic to meet the latest draft
- Previously existing MetadataPolicy (from java-oidc-common) is still used as a basis
- New deserializer (FederationMetadataPolicyDeserializer) exploits Optional.empty() if value-operator is explicitely set to null
- The validation and enforcement logic of each operator is in a corresponding FederationMetadataPolicyOperator implementation
- Integrated Connect2Id's metadata policy test vectors [1] into our tests
- The page states that "At this URL you can download 2000+ test vectors with metadata policies for OpenID Federation 1.0: [2]"
- A copy of the JSON-file behind the URL is included in our repository
[1] https://connect2id.com/blog/metadata-policy-test-vectors-openid-federation
[2] https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions/downloads/metadata-policy-test-vectors-2025-02-13.json
---
.../FederationMetadataPolicyDeserializer.java | 120 +
.../policy/FederationMetadataPolicyOperator.java | 49 +
.../AbstractFederationMetadataPolicyOperator.java | 56 +
...DefaultFederationMetadataPolicyAddOperator.java | 109 +
...ultFederationMetadataPolicyDefaultOperator.java | 38 +
.../DefaultFederationMetadataPolicyEnforcer.java | 95 +
...tFederationMetadataPolicyEssentialOperator.java | 40 +
...ultFederationMetadataPolicyMergingStrategy.java | 102 +
...faultFederationMetadataPolicyOneOfOperator.java | 66 +
...ltFederationMetadataPolicySubsetOfOperator.java | 88 +
...FederationMetadataPolicySupersetOfOperator.java | 86 +
...faultFederationMetadataPolicyValueOperator.java | 82 +
.../policy/impl/Connect2IdMetadataPolicyTest.java | 188 +
.../impl/Connect2IdMetadataPolicyTestVector.java | 136 +
...efaultFederationMetadataPolicyEnforcerTest.java | 450 +
.../metadata-policy-test-vectors-2025-02-13.json | 50299 +++++++++++++++++++
16 files changed, 52004 insertions(+)
diff --git a/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/FederationMetadataPolicyDeserializer.java b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/FederationMetadataPolicyDeserializer.java
new file mode 100644
index 00000000..c557b385
--- /dev/null
+++ b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/FederationMetadataPolicyDeserializer.java
@@ -0,0 +1,120 @@
+/*
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package net.shibboleth.idp.plugin.oidc.op.oidfed.metadata.policy;
+
+import java.io.IOException;
+import java.util.List;
+import java.util.Map;
+import java.util.Objects;
+import java.util.Optional;
+
+import javax.annotation.Nonnull;
+import javax.annotation.Nullable;
+
+import org.slf4j.Logger;
+
+import com.fasterxml.jackson.core.JsonParser;
+import com.fasterxml.jackson.core.JsonProcessingException;
+import com.fasterxml.jackson.databind.DeserializationContext;
+import com.fasterxml.jackson.databind.JavaType;
+import com.fasterxml.jackson.databind.JsonDeserializer;
+import com.fasterxml.jackson.databind.type.MapType;
+import com.fasterxml.jackson.databind.type.TypeFactory;
+
+import net.shibboleth.oidc.metadata.policy.MetadataPolicy;
+import net.shibboleth.shared.primitive.LoggerFactory;
+
+/**
+ * Default deserializer for the {@link MetadataPolicy} used within OpenID Federation. If the value for the "value"
+ * -operator is explicitly set to null in JSON, this deserializer sets {@link MetadataPolicy#setValue(Object)} into
+ * {@link Optional#empty()}.
+ */
+public class FederationMetadataPolicyDeserializer extends JsonDeserializer<MetadataPolicy> {
+
+ /** Class logger. */
+ @Nonnull private final Logger log = LoggerFactory.getLogger(FederationMetadataPolicyDeserializer.class);
+
+ /** {@inheritDoc} */
+ @Override @Nonnull
+ public MetadataPolicy deserialize(final JsonParser jsonParser, final DeserializationContext deserializationContext)
+ throws IOException, JsonProcessingException {
+ final MetadataPolicy policy = new MetadataPolicy();
+ log.debug("Starting deseralize");
+ final JavaType objectType = TypeFactory.defaultInstance().constructType(Object.class);
+ final JavaType stringType = TypeFactory.defaultInstance().constructType(String.class);
+ final MapType objectMapType =
+ TypeFactory.defaultInstance().constructMapType(Map.class, stringType, objectType);
+
+ final Map<String,Object> map = deserializationContext.readValue(jsonParser, objectMapType);
+
+ if (map != null) {
+ log.debug("Processing map object {}", map);
+ for (final String key : map.keySet().stream().filter(Objects::nonNull).toList()) {
+ switch (key) {
+ case "value":
+ policy.setValue(map.get("value") != null ? map.get("value") : Optional.empty());
+ break;
+ case "add":
+ policy.setAdd(map.get("add"));
+ break;
+ case "default":
+ policy.setDefaultValue(map.get("default"));
+ break;
+ case "essential":
+ policy.setEssential(map.get("essential") != null ?
+ Boolean.valueOf(String.valueOf(map.get("essential"))).booleanValue() : false);
+ break;
+ case "one_of":
+ policy.setOneOfValues(transformObjectIntoList("one_of", map));
+ break;
+ case "subset_of":
+ policy.setSubsetOfValues(transformObjectIntoList("subset_of", map));
+ break;
+ case "superset_of":
+ policy.setSupersetOfValues(transformObjectIntoList("superset_of", map));
+ break;
+ case "regexp":
+ policy.setRegexp(map.get("regexp") == null ? null : "" + map.get("regexp"));
+ break;
+ default:
+ policy.setCustomOperator(key, map.get(key));
+ break;
+ }
+ }
+ } else {
+ log.debug("No map object could be parsed from the input, leaving the policy empty");
+ }
+ return policy;
+ }
+
+ /**
+ * Transforms the value from the given map into a list of objects.
+ *
+ * @param id the key for the map of objects
+ * @param objects the map of objects
+ * @return the value for the key as list or null
+ * @throws IOException if a non-null value could not be transformed into a list
+ */
+ @Nullable private List<Object> transformObjectIntoList(@Nonnull final String id,
+ @Nonnull final Map<String,Object> objects) throws IOException {
+ final Object object = objects.get(id);
+ if (object instanceof List<?> list) {
+ return list.stream().filter(Object.class::isInstance).map(Object.class::cast).toList();
+ } else if (object != null) {
+ throw new IOException("Cannot transform '" + id + "' value into a list");
+ }
+ return null;
+ }
+}
\ No newline at end of file
diff --git a/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/FederationMetadataPolicyOperator.java b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/FederationMetadataPolicyOperator.java
new file mode 100644
index 00000000..c6a367a0
--- /dev/null
+++ b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/FederationMetadataPolicyOperator.java
@@ -0,0 +1,49 @@
+/*
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package net.shibboleth.idp.plugin.oidc.op.oidfed.metadata.policy;
+
+import javax.annotation.Nonnull;
+import javax.annotation.Nullable;
+
+import net.shibboleth.oidc.metadata.policy.MetadataPolicy;
+import net.shibboleth.shared.logic.ConstraintViolationException;
+
+/**
+ * Interface to be implemented by the federation metadata policy operators.
+ *
+ * TODO: once moved to commons, merge with net.shibboleth.oidc.metadata.policy.impl.CustomMetadataPolicyOperator
+ */
+public interface FederationMetadataPolicyOperator {
+
+ /**
+ * Validate whether the operator is compatible with the other operators in the policy.
+ *
+ * @param policy The metadata policy to be used by the custom policy operator.
+ * @return true if the policy is valid for this operator, false otherwise.
+ */
+ public boolean validate(@Nonnull final MetadataPolicy policy);
+
+ /**
+ * Apply the operator for the given input that has the given metadata policy attached.
+ *
+ * @param inputValue The value to be used by the custom policy operator.
+ * @param policy The metadata policy to be used by the custom policy operator.
+ * @return The value returned by the custom policy operator.
+ * @throws ConstraintViolationException If the value-check of the custom operator fails.
+ */
+ @Nullable public Object apply(@Nullable final Object inputValue, @Nonnull final MetadataPolicy policy)
+ throws ConstraintViolationException;
+
+}
diff --git a/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/AbstractFederationMetadataPolicyOperator.java b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/AbstractFederationMetadataPolicyOperator.java
new file mode 100644
index 00000000..926edbb3
--- /dev/null
+++ b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/AbstractFederationMetadataPolicyOperator.java
@@ -0,0 +1,56 @@
+/*
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package net.shibboleth.idp.plugin.oidc.op.oidfed.metadata.policy.impl;
+
+import java.util.List;
+
+import javax.annotation.Nonnull;
+import javax.annotation.Nullable;
+
+import net.shibboleth.idp.plugin.oidc.op.oidfed.metadata.policy.FederationMetadataPolicyOperator;
+import net.shibboleth.oidc.metadata.policy.MetadataPolicy;
+import net.shibboleth.shared.component.AbstractIdentifiableInitializableComponent;
+import net.shibboleth.shared.logic.ConstraintViolationException;
+
+/**
+ * Base implementation for the classes implementing {@link FederationMetadataPolicyOperator}.
+ */
+public abstract class AbstractFederationMetadataPolicyOperator extends AbstractIdentifiableInitializableComponent
+ implements FederationMetadataPolicyOperator {
+
+ /** {@inheritDoc} */
+ @Override
+ public boolean validate(@Nonnull final MetadataPolicy policy) {
+ return true;
+ }
+
+ /**
+ * Parses a list from the given object.
+ *
+ * @param object the object to be parsed
+ * @return a list of it couöd be parsed from the object, or null if input was null
+ * @throws ConstraintViolationException thrown if non-null input value was not a list
+ */
+ @Nullable protected static List<Object> parseList(@Nullable final Object object)
+ throws ConstraintViolationException {
+ if (object instanceof List<?> list) {
+ return list.stream().filter(Object.class::isInstance).map(Object.class::cast).toList();
+ } else if (object != null) {
+ throw new ConstraintViolationException("Could not parse list from the given object");
+ }
+ return null;
+ }
+
+}
diff --git a/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicyAddOperator.java b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicyAddOperator.java
new file mode 100644
index 00000000..e30ffc47
--- /dev/null
+++ b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicyAddOperator.java
@@ -0,0 +1,109 @@
+/*
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package net.shibboleth.idp.plugin.oidc.op.oidfed.metadata.policy.impl;
+
+import java.util.Collection;
+import java.util.List;
+import java.util.stream.Stream;
+
+import javax.annotation.Nonnull;
+import javax.annotation.Nullable;
+
+import org.slf4j.Logger;
+
+import net.shibboleth.oidc.metadata.policy.MetadataPolicy;
+import net.shibboleth.oidc.metadata.policy.impl.MetadataPolicyHelper;
+import net.shibboleth.shared.collection.CollectionSupport;
+import net.shibboleth.shared.logic.ConstraintViolationException;
+import net.shibboleth.shared.primitive.LoggerFactory;
+
+/**
+ * Default implementation for the 'add'-operator.
+ */
+public class DefaultFederationMetadataPolicyAddOperator extends AbstractFederationMetadataPolicyOperator {
+
+ /** Class logger. */
+ @Nonnull private final Logger log = LoggerFactory.getLogger(DefaultFederationMetadataPolicyAddOperator.class);
+
+ /** {@inheritDoc} */
+ @Override
+ @Nullable public Object apply(@Nullable final Object candidate, @Nonnull final MetadataPolicy policy)
+ throws ConstraintViolationException {
+ final List<Object> add = parseList(policy.getAdd());
+ if (add != null) {
+ if (candidate instanceof List<?> list) {
+ log.debug("Combining candidate {} and add {}", list, add);
+ return buildResult(Stream.concat(list.stream(), add.stream()));
+ } else if (candidate == null) {
+ log.debug("Returning the contents of the add operator: {}", add);
+ return buildResult(add.stream());
+ } else {
+ log.debug("Candidate value {} is not a list/array", candidate);
+ throw new ConstraintViolationException("Candidate " + candidate + " is not a list/array");
+ }
+ }
+ return candidate;
+ }
+
+ /**
+ * Builds a list from the given stream.
+ *
+ * @param stream the stream
+ * @return the list
+ */
+ @Nonnull protected List<Object> buildResult(final Stream<?> stream) {
+ final List<Object> result = stream
+ .filter(Object.class::isInstance)
+ .map(Object.class::cast)
+ .distinct()
+ .toList();
+ assert result != null;
+ return CollectionSupport.copyToList(result);
+ }
+
+ /** {@inheritDoc} */
+ @Override
+ public boolean validate(@Nonnull final MetadataPolicy policy) {
+ final List<Object> add;
+ try {
+ add = parseList(policy.getAdd());
+ } catch (final ConstraintViolationException e) {
+ log.warn("The value for add operator {} is not a list/array", policy.getAdd());
+ return false;
+ }
+ if (add == null || add.isEmpty()) {
+ return true;
+ }
+ boolean validation = true;
+ final Object value = policy.getValue();
+ if (value instanceof Collection<?> valueCollection) {
+ if (!MetadataPolicyHelper.isSubsetOfValues(add, valueCollection)) {
+ log.debug("The value for add operator {} is not a subset of value {}", add, valueCollection);
+ validation = false;
+ }
+ } else if (value != null) {
+ log.warn("The value {} is not a list/array", value);
+ validation = false;
+ }
+ final List<Object> subsetOf = policy.getSubsetOfValues();
+ if (subsetOf != null && !MetadataPolicyHelper.isSubsetOfValues(add, subsetOf)) {
+ log.debug("The value for add operator {} is not a subset of value for the subset_of operator {}", add,
+ subsetOf);
+ validation = false;
+ }
+ return validation;
+ }
+
+}
diff --git a/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicyDefaultOperator.java b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicyDefaultOperator.java
new file mode 100644
index 00000000..89bf4835
--- /dev/null
+++ b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicyDefaultOperator.java
@@ -0,0 +1,38 @@
+/*
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package net.shibboleth.idp.plugin.oidc.op.oidfed.metadata.policy.impl;
+
+import javax.annotation.Nonnull;
+import javax.annotation.Nullable;
+
+import net.shibboleth.oidc.metadata.policy.MetadataPolicy;
+import net.shibboleth.shared.logic.ConstraintViolationException;
+
+/**
+ * Default implementation for the 'default' -operator.
+ */
+public class DefaultFederationMetadataPolicyDefaultOperator extends AbstractFederationMetadataPolicyOperator {
+
+ /** {@inheritDoc} */
+ @Override
+ @Nullable public Object apply(@Nullable final Object candidate, @Nonnull final MetadataPolicy policy)
+ throws ConstraintViolationException {
+ if (candidate != null) {
+ return candidate;
+ }
+ final Object defaultValue = policy.getDefaultValue();
+ return defaultValue != null ? defaultValue : candidate;
+ }
+}
diff --git a/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicyEnforcer.java b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicyEnforcer.java
new file mode 100644
index 00000000..8bbeda63
--- /dev/null
+++ b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicyEnforcer.java
@@ -0,0 +1,95 @@
+/*
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package net.shibboleth.idp.plugin.oidc.op.oidfed.metadata.policy.impl;
+
+import java.util.List;
+import java.util.Optional;
+import java.util.function.BiFunction;
+
+import javax.annotation.Nonnull;
+import javax.annotation.Nullable;
+
+import org.slf4j.Logger;
+
+import net.shibboleth.idp.plugin.oidc.op.oidfed.metadata.policy.FederationMetadataPolicyOperator;
+import net.shibboleth.oidc.metadata.policy.MetadataPolicy;
+import net.shibboleth.shared.annotation.constraint.NonnullAfterInit;
+import net.shibboleth.shared.collection.Pair;
+import net.shibboleth.shared.component.AbstractIdentifiableInitializableComponent;
+import net.shibboleth.shared.logic.Constraint;
+import net.shibboleth.shared.logic.ConstraintViolationException;
+import net.shibboleth.shared.primitive.LoggerFactory;
+
+/**
+ * <p>A function that applies the given {@link MetadataPolicy} to the given object. The input is given as a {@link
+ * Pair} of the object and the policy. The policy is applied to the incoming object as specified in the OpenID
+ * Federation specification 1.0 (draft 42 / April 2025)</p>
+ *
+ * <p>In addition to the standard operators, we also support regular expression validation.</p>
+ *
+ * <p>The function returns a {@link Pair} of the object for which the value modifiers of the metadata policy have
+ * been applied to, and a flag indicating if the object was compatible with the value checks of the metadata policy.
+ * </p>
+ */
+public class DefaultFederationMetadataPolicyEnforcer extends AbstractIdentifiableInitializableComponent
+ implements BiFunction<Object,MetadataPolicy,Pair<Object,Boolean>> {
+
+ /** Class logger. */
+ @Nonnull private final Logger log = LoggerFactory.getLogger(DefaultFederationMetadataPolicyEnforcer.class);
+
+ /** The list of metadata policy operators used for enforcing the metadata policy. */
+ @NonnullAfterInit List<FederationMetadataPolicyOperator> operators;
+
+ /**
+ * Set the list of metadata policy operators used for enforcing the metadata policy.
+ *
+ * @param policyOperators What to set
+ */
+ public void setMetadataPolicyOperators(@Nonnull final List<FederationMetadataPolicyOperator> policyOperators) {
+ checkSetterPreconditions();
+ operators = Constraint.isNotNull(policyOperators, "List of metadata policy operators cannot be null");
+ }
+
+ /** {@inheritDoc} */
+ @Override @Nullable public Pair<Object, Boolean> apply(@Nullable final Object candidate,
+ @Nullable final MetadataPolicy policy) {
+ if (policy == null) {
+ return new Pair<>(candidate, Boolean.TRUE);
+ }
+ Object operatorResult = candidate;
+ for (final FederationMetadataPolicyOperator operator : operators) {
+ try {
+ operatorResult = operator.apply(operatorResult, policy);
+ } catch (final ConstraintViolationException e) {
+ log.debug("Operator {} returned a non-success result", operator.getClass());
+ return new Pair<>(operatorResult, Boolean.FALSE);
+ }
+ }
+ return new Pair<>(operatorResult, Boolean.TRUE);
+ }
+
+ /**
+ * Checks if the given result of metadata policy operator is a success result.
+ *
+ * @param result operator result to be verified
+ * @return true if success, false otherwise (including null)
+ */
+ protected boolean isSuccessResult(@Nullable final Pair<Object,Boolean> result) {
+ return Optional.ofNullable(result)
+ .map(pair -> pair.getSecond())
+ .map(second -> second.booleanValue())
+ .orElse(false);
+ }
+}
diff --git a/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicyEssentialOperator.java b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicyEssentialOperator.java
new file mode 100644
index 00000000..8a1efc74
--- /dev/null
+++ b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicyEssentialOperator.java
@@ -0,0 +1,40 @@
+/*
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package net.shibboleth.idp.plugin.oidc.op.oidfed.metadata.policy.impl;
+
+import javax.annotation.Nonnull;
+import javax.annotation.Nullable;
+
+import net.shibboleth.oidc.metadata.policy.MetadataPolicy;
+import net.shibboleth.shared.logic.ConstraintViolationException;
+
+/**
+ * Default implementation for the 'essential' -operator.
+ */
+public class DefaultFederationMetadataPolicyEssentialOperator extends AbstractFederationMetadataPolicyOperator {
+
+ /** {@inheritDoc} */
+ @Override
+ @Nullable public Object apply(@Nullable final Object candidate, @Nonnull final MetadataPolicy policy)
+ throws ConstraintViolationException {
+ if (candidate != null) {
+ return candidate;
+ }
+ if (policy.isEssential()) {
+ throw new ConstraintViolationException("Essential value is missing");
+ }
+ return candidate;
+ }
+}
diff --git a/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicyMergingStrategy.java b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicyMergingStrategy.java
new file mode 100644
index 00000000..1fb28ca6
--- /dev/null
+++ b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicyMergingStrategy.java
@@ -0,0 +1,102 @@
+/*
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package net.shibboleth.idp.plugin.oidc.op.oidfed.metadata.policy.impl;
+
+import java.util.Collections;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+import java.util.function.BiFunction;
+import java.util.stream.Collectors;
+import java.util.stream.Stream;
+
+import javax.annotation.Nonnull;
+import javax.annotation.Nullable;
+
+import org.slf4j.Logger;
+
+import net.shibboleth.idp.plugin.oidc.op.oidfed.metadata.policy.FederationMetadataPolicyOperator;
+import net.shibboleth.oidc.metadata.policy.MetadataPolicy;
+import net.shibboleth.oidc.metadata.policy.impl.MetadataPolicyHelper;
+import net.shibboleth.shared.annotation.constraint.NonnullAfterInit;
+import net.shibboleth.shared.collection.Pair;
+import net.shibboleth.shared.component.AbstractIdentifiableInitializableComponent;
+import net.shibboleth.shared.logic.Constraint;
+import net.shibboleth.shared.logic.ConstraintViolationException;
+import net.shibboleth.shared.primitive.LoggerFactory;
+
+/**
+ * A function that merges two maps of metadata policies according to the rules specified in the OID federation spec
+ * (draft 42), section 6.1. The function returns a pair of map of merged metadata policies and a boolean indicating if
+ * the merging operators in the policies were compliant.
+ */
+public class DefaultFederationMetadataPolicyMergingStrategy extends AbstractIdentifiableInitializableComponent
+ implements BiFunction<Map<String, MetadataPolicy>, Map<String, MetadataPolicy>,
+ Pair<Map<String, MetadataPolicy>, Boolean>> {
+
+ /** Class logger. */
+ @Nonnull private final Logger log = LoggerFactory.getLogger(DefaultFederationMetadataPolicyMergingStrategy.class);
+
+ /** The list of metadata policy operators used for enforcing the metadata policy. */
+ @NonnullAfterInit List<FederationMetadataPolicyOperator> operators;
+
+ /**
+ * Set the list of metadata policy operators used for enforcing the metadata policy.
+ *
+ * @param policyOperators What to set
+ */
+ public void setMetadataPolicyOperators(@Nonnull final List<FederationMetadataPolicyOperator> policyOperators) {
+ checkSetterPreconditions();
+ operators = Constraint.isNotNull(policyOperators, "List of metadata policy operators cannot be null");
+ }
+
+ /** {@inheritDoc} */
+ @Nonnull
+ public Pair<Map<String, MetadataPolicy>, Boolean> apply(@Nullable final Map<String,MetadataPolicy> first,
+ @Nullable final Map<String,MetadataPolicy> second) {
+ if (first == null || first.isEmpty()) {
+ return new Pair<>(second == null ? (first == null ? null : Collections.emptyMap()) : second , Boolean.TRUE);
+ } else if (second == null || second.isEmpty()) {
+ return new Pair<>(first, Boolean.TRUE);
+ }
+ final Set<String> combinedKeys = Stream.concat(first.keySet().stream(),
+ second.keySet().stream()).collect(Collectors.toSet());
+ final Map<String, MetadataPolicy> result = new HashMap<>();
+ boolean valid = true;
+ for (final String key : combinedKeys) {
+ try {
+ final MetadataPolicy merged =
+ MetadataPolicyHelper.mergeMetadataPolicies(first.get(key), second.get(key));
+ log.debug("Merging result of {} with {}: {}", first.get(key), second.get(key), merged);
+ if (merged != null && merged.getOneOfValues() != null && merged.getOneOfValues().isEmpty()) {
+ log.warn("Value of 'one_of' operator is empty after merging");
+ valid = false;
+ }
+ result.put(key, merged);
+ for (final FederationMetadataPolicyOperator operator : operators) {
+ if (merged != null && !operator.validate(merged)) {
+ valid = false;
+ }
+ }
+ } catch (final ConstraintViolationException e) {
+ log.warn("Incompatible metadata policies for claim '{}' that cannot be merged.", key);
+ valid = false;
+ }
+ }
+ return new Pair<>(result, Boolean.valueOf(valid));
+ }
+
+}
\ No newline at end of file
diff --git a/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicyOneOfOperator.java b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicyOneOfOperator.java
new file mode 100644
index 00000000..04a39f0d
--- /dev/null
+++ b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicyOneOfOperator.java
@@ -0,0 +1,66 @@
+/*
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package net.shibboleth.idp.plugin.oidc.op.oidfed.metadata.policy.impl;
+
+import java.util.List;
+
+import javax.annotation.Nonnull;
+import javax.annotation.Nullable;
+
+import org.slf4j.Logger;
+
+import net.shibboleth.oidc.metadata.policy.MetadataPolicy;
+import net.shibboleth.shared.logic.ConstraintViolationException;
+import net.shibboleth.shared.primitive.LoggerFactory;
+
+/**
+ * Default implementation for the 'one_of' -operator.
+ */
+public class DefaultFederationMetadataPolicyOneOfOperator extends AbstractFederationMetadataPolicyOperator {
+
+ /** Class logger. */
+ @Nonnull private final Logger log = LoggerFactory.getLogger(DefaultFederationMetadataPolicyOneOfOperator.class);
+
+ /** {@inheritDoc} */
+ @Override
+ @Nullable public Object apply(@Nullable final Object candidate, @Nonnull final MetadataPolicy policy)
+ throws ConstraintViolationException {
+ final List<Object> oneOf = policy.getOneOfValues();
+ if (candidate == null || oneOf == null) {
+ log.debug("No candidate or one_of value present. nothing to do");
+ return candidate;
+ }
+ if (!oneOf.contains(candidate)) {
+ throw new ConstraintViolationException(
+ "The candidate " + candidate + " is not included in the values for one_of: " + oneOf);
+ }
+ return candidate;
+ }
+
+ /** {@inheritDoc} */
+ @Override
+ public boolean validate(@Nonnull final MetadataPolicy policy) {
+ final List<Object> oneOf = policy.getOneOfValues();
+ if (oneOf == null) {
+ return true;
+ }
+ final Object value = policy.getValue();
+ if (value != null && !oneOf.contains(value)) {
+ log.debug("The value {} is not included in the values for one_of: {}", value, oneOf);
+ return false;
+ }
+ return true;
+ }
+}
diff --git a/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicySubsetOfOperator.java b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicySubsetOfOperator.java
new file mode 100644
index 00000000..f5a05be4
--- /dev/null
+++ b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicySubsetOfOperator.java
@@ -0,0 +1,88 @@
+/*
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package net.shibboleth.idp.plugin.oidc.op.oidfed.metadata.policy.impl;
+
+import java.util.List;
+
+import javax.annotation.Nonnull;
+import javax.annotation.Nullable;
+
+import org.slf4j.Logger;
+
+import net.shibboleth.oidc.metadata.policy.MetadataPolicy;
+import net.shibboleth.oidc.metadata.policy.impl.MetadataPolicyHelper;
+import net.shibboleth.shared.collection.CollectionSupport;
+import net.shibboleth.shared.logic.ConstraintViolationException;
+import net.shibboleth.shared.primitive.LoggerFactory;
+
+/**
+ * Default implementation for the 'subset_of' -operator.
+ */
+public class DefaultFederationMetadataPolicySubsetOfOperator extends AbstractFederationMetadataPolicyOperator {
+
+ /** Class logger. */
+ @Nonnull private final Logger log = LoggerFactory.getLogger(DefaultFederationMetadataPolicySubsetOfOperator.class);
+
+ /** {@inheritDoc} */
+ @Override
+ @Nullable public Object apply(@Nullable final Object candidate, @Nonnull final MetadataPolicy policy)
+ throws ConstraintViolationException {
+ final List<Object> subsetOf = policy.getSubsetOfValues();
+ if (candidate == null || subsetOf == null) {
+ log.debug("No candidate or subset_of value present. nothing to do");
+ return candidate;
+ }
+ if (candidate instanceof List<?> list) {
+ final List<Object> candidateList = list.stream()
+ .filter(Object.class::isInstance)
+ .map(Object.class::cast)
+ .filter(item -> subsetOf.contains(item))
+ .toList();
+ assert candidateList != null;
+ return CollectionSupport.copyToList(candidateList);
+ }
+ log.debug("Candidate value {} is not a list/array", candidate);
+ throw new ConstraintViolationException("Candidate value " + candidate + " is not a list/array");
+ }
+
+ /** {@inheritDoc} */
+ @Override
+ public boolean validate(@Nonnull final MetadataPolicy policy) {
+ final List<Object> subsetOf = policy.getSubsetOfValues();
+ if (subsetOf == null) {
+ return true;
+ }
+ boolean validation = true;
+ final Object value = policy.getValue();
+ if (value != null && !MetadataPolicyHelper.isSubsetOfValues(value, subsetOf)) {
+ log.debug("The value {} is not a subset of the values for subset_of operator {}", value, subsetOf);
+ validation = false;
+ }
+ final Object add = policy.getAdd();
+ if (add != null && !MetadataPolicyHelper.isSubsetOfValues(add, subsetOf)) {
+ log.debug("The value for add operator {} is not a subset of the values for subset_of operator {}", add,
+ subsetOf);
+ validation = false;
+ }
+ final List<Object> supersetOf = policy.getSupersetOfValues();
+ if (supersetOf != null && !MetadataPolicyHelper.isSupersetOfValues(subsetOf, supersetOf)) {
+ log.debug("The value for subset_of operator {} is not a subset of the values for superset_of operator {}",
+ subsetOf, supersetOf);
+ validation = false;
+ }
+ return validation;
+ }
+
+}
diff --git a/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicySupersetOfOperator.java b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicySupersetOfOperator.java
new file mode 100644
index 00000000..5cea5128
--- /dev/null
+++ b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicySupersetOfOperator.java
@@ -0,0 +1,86 @@
+/*
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package net.shibboleth.idp.plugin.oidc.op.oidfed.metadata.policy.impl;
+
+import java.util.List;
+
+import javax.annotation.Nonnull;
+import javax.annotation.Nullable;
+
+import org.slf4j.Logger;
+
+import net.shibboleth.oidc.metadata.policy.MetadataPolicy;
+import net.shibboleth.oidc.metadata.policy.impl.MetadataPolicyHelper;
+import net.shibboleth.shared.collection.CollectionSupport;
+import net.shibboleth.shared.logic.ConstraintViolationException;
+import net.shibboleth.shared.primitive.LoggerFactory;
+
+/**
+ * Default implementation for the 'superset_of' -operator.
+ */
+public class DefaultFederationMetadataPolicySupersetOfOperator extends AbstractFederationMetadataPolicyOperator {
+
+ /** Class logger. */
+ @Nonnull private final Logger log = LoggerFactory.getLogger(DefaultFederationMetadataPolicySupersetOfOperator.class);
+
+ /** {@inheritDoc} */
+ @Override
+ @Nullable public Object apply(@Nullable final Object candidate, @Nonnull final MetadataPolicy policy)
+ throws ConstraintViolationException {
+ final List<Object> supersetOf = policy.getSupersetOfValues();
+ if (candidate == null || supersetOf == null) {
+ return candidate;
+ }
+ final List<Object> candidateList;
+ if (candidate instanceof List<?> list) {
+ candidateList = list.stream().filter(Object.class::isInstance).map(Object.class::cast).toList();
+ } else {
+ log.warn("The value for superset_of is not a list/array {}", candidate);
+ throw new ConstraintViolationException("Candidate value " + candidate + " is not a list/array");
+ }
+ assert candidateList != null;
+
+ if (!candidateList.containsAll(supersetOf)) {
+ log.debug("The candidate {} did not contain all the values of superset_of: {}", candidate, supersetOf);
+ throw new ConstraintViolationException(
+ "Candidate value " + candidate + " did not contain all values of superset_of: " + supersetOf);
+ }
+
+ return CollectionSupport.copyToList(candidateList);
+ }
+
+ /** {@inheritDoc} */
+ @Override
+ public boolean validate(@Nonnull final MetadataPolicy policy) {
+ final List<Object> supersetOf = policy.getSupersetOfValues();
+ if (supersetOf == null) {
+ return true;
+ }
+
+ boolean validation = true;
+ final Object value = policy.getValue();
+ if (value != null && !MetadataPolicyHelper.isSupersetOfValues(value, supersetOf)) {
+ log.debug("The value {} is not a superset of the values for subset_of operator {}", value, supersetOf);
+ validation = false;
+ }
+ final List<Object> subsetOf = policy.getSubsetOfValues();
+ if (subsetOf != null && !MetadataPolicyHelper.isSupersetOfValues(subsetOf, supersetOf)) {
+ log.debug("The value for subset_of operator {} is not a superset of the values for superset_of operator {}",
+ subsetOf, supersetOf);
+ validation = false;
+ }
+ return validation;
+ }
+}
diff --git a/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicyValueOperator.java b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicyValueOperator.java
new file mode 100644
index 00000000..fee597cb
--- /dev/null
+++ b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicyValueOperator.java
@@ -0,0 +1,82 @@
+/*
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package net.shibboleth.idp.plugin.oidc.op.oidfed.metadata.policy.impl;
+
+import java.util.List;
+import java.util.Optional;
+
+import javax.annotation.Nonnull;
+import javax.annotation.Nullable;
+
+import org.slf4j.Logger;
+
+import net.shibboleth.oidc.metadata.policy.MetadataPolicy;
+import net.shibboleth.oidc.metadata.policy.impl.MetadataPolicyHelper;
+import net.shibboleth.shared.logic.ConstraintViolationException;
+import net.shibboleth.shared.primitive.LoggerFactory;
+
+/**
+ * Default implementation for the 'value' -operator.
+ */
+public class DefaultFederationMetadataPolicyValueOperator extends AbstractFederationMetadataPolicyOperator {
+
+ /** Class logger. */
+ @Nonnull private final Logger log = LoggerFactory.getLogger(DefaultFederationMetadataPolicyValueOperator.class);
+
+ /** {@inheritDoc} */
+ @Override
+ @Nullable public Object apply(@Nullable final Object candidate, @Nonnull final MetadataPolicy policy)
+ throws ConstraintViolationException {
+ final Object value = policy.getValue();
+ return value != null ?value instanceof Optional optional && optional.isEmpty() ? null : value : candidate;
+ }
+
+ /** {@inheritDoc} */
+ @Override
+ public boolean validate(@Nonnull final MetadataPolicy policy) {
+ final Object value = policy.getValue();
+ if (value instanceof Optional optional && optional.isEmpty()) {
+ if (policy.isEssential()) {
+ log.debug("Value for the value operator is null and essential is true");
+ return false;
+ }
+ if (policy.getDefaultValue() != null) {
+ log.debug("Null value cannot be combined with non-empty default: {}", policy.getDefaultValue());
+ return false;
+ }
+ log.debug("Value for the value operator is null and essential is false");
+ return true;
+ } else if (value == null) {
+ return true;
+ }
+ boolean validation = true;
+ final List<Object> oneOf = policy.getOneOfValues();
+ if (oneOf != null && !oneOf.contains(value)) {
+ log.debug("Value {} is not included in the one_of values {}", value, oneOf);
+ validation = false;
+ }
+ final List<Object> subsetOf = policy.getSubsetOfValues();
+ if (subsetOf != null && !MetadataPolicyHelper.isSubsetOfValues(value, subsetOf)) {
+ log.debug("Value {} is not included in the of subset_of values {}", value, subsetOf);
+ validation = false;
+ }
+ final List<Object> supersetOf = policy.getSupersetOfValues();
+ if (supersetOf != null && !MetadataPolicyHelper.isSupersetOfValues(value, supersetOf)) {
+ log.debug("Value {} is not included in the of superset_of values {}", value, supersetOf);
+ validation = false;
+ }
+ return validation;
+ }
+}
diff --git a/idp-oidc-extension-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/Connect2IdMetadataPolicyTest.java b/idp-oidc-extension-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/Connect2IdMetadataPolicyTest.java
new file mode 100644
index 00000000..ff48a205
--- /dev/null
+++ b/idp-oidc-extension-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/Connect2IdMetadataPolicyTest.java
@@ -0,0 +1,188 @@
+/*
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package net.shibboleth.idp.plugin.oidc.op.oidfed.metadata.policy.impl;
+
+import java.io.IOException;
+import java.nio.charset.Charset;
+import java.util.Collections;
+import java.util.List;
+import java.util.Map;
+
+import org.springframework.core.io.ClassPathResource;
+import org.springframework.core.io.Resource;
+import org.testng.Assert;
+import org.testng.annotations.BeforeMethod;
+import org.testng.annotations.Test;
+
+import com.fasterxml.jackson.core.JsonProcessingException;
+import com.fasterxml.jackson.core.type.TypeReference;
+import com.fasterxml.jackson.databind.ObjectMapper;
+import com.fasterxml.jackson.databind.module.SimpleModule;
+
+import net.shibboleth.idp.plugin.oidc.op.oidfed.metadata.policy.FederationMetadataPolicyDeserializer;
+import net.shibboleth.idp.plugin.oidc.op.oidfed.metadata.policy.FederationMetadataPolicyOperator;
+import net.shibboleth.oidc.metadata.policy.MetadataPolicy;
+import net.shibboleth.shared.collection.CollectionSupport;
+import net.shibboleth.shared.collection.Pair;
+import net.shibboleth.shared.component.ComponentInitializationException;
+
+/**
+ * A unit test running standard operators against the vectors described at:
+ * https://connect2id.com/blog/metadata-policy-test-vectors-openid-federation
+ */
+public class Connect2IdMetadataPolicyTest {
+
+ DefaultFederationMetadataPolicyMergingStrategy mergingStrategy;
+ DefaultFederationMetadataPolicyEnforcer enforcer;
+
+ @BeforeMethod
+ public void init() throws ComponentInitializationException {
+ final List<FederationMetadataPolicyOperator> operators = CollectionSupport.listOf(
+ initializeOperator(new DefaultFederationMetadataPolicyValueOperator()),
+ initializeOperator(new DefaultFederationMetadataPolicyAddOperator()),
+ initializeOperator(new DefaultFederationMetadataPolicyDefaultOperator()),
+ initializeOperator(new DefaultFederationMetadataPolicyOneOfOperator()),
+ initializeOperator(new DefaultFederationMetadataPolicySubsetOfOperator()),
+ initializeOperator(new DefaultFederationMetadataPolicySupersetOfOperator()),
+ initializeOperator(new DefaultFederationMetadataPolicyEssentialOperator()));
+ enforcer = new DefaultFederationMetadataPolicyEnforcer();
+ enforcer.setId("mockEnforcerId");
+ enforcer.setMetadataPolicyOperators(operators);
+ enforcer.initialize();
+ mergingStrategy = new DefaultFederationMetadataPolicyMergingStrategy();
+ mergingStrategy.setId("mockMergingStrategyId");
+ mergingStrategy.setMetadataPolicyOperators(operators);
+ mergingStrategy.initialize();
+ }
+
+ @SuppressWarnings("null")
+ @Test
+ public void testPolicyTestVectors() throws IOException {
+ final List<Connect2IdMetadataPolicyTestVector> policies = loadPolicyTestVectors();
+
+ for (final Connect2IdMetadataPolicyTestVector test : policies) {
+ final String ERROR_MESSAGE = "Unexpected result for test " + test.getTestVectorNumber();
+ Assert.assertNotNull(test.getTrustAnchor());
+ final String paramName = test.getTrustAnchor().keySet().iterator().next();
+ Assert.assertNotNull(paramName);
+ final Pair<Map<String, MetadataPolicy>, Boolean> mergingResult = mergingStrategy.apply(
+ Map.of(paramName, test.getTrustAnchor().get(paramName)),
+ Map.of(paramName, test.getIntermediate().get(paramName)));
+ Assert.assertNotNull(mergingResult, ERROR_MESSAGE);
+ assert mergingResult != null;
+ if (test.getMerged() != null) {
+ Assert.assertTrue(mergingResult.getSecond(), ERROR_MESSAGE);
+ Assert.assertFalse(test.getMerged().isEmpty(), ERROR_MESSAGE);
+ final MetadataPolicy merged = mergingResult.getFirst().get(paramName);
+ assertEqualsDeep(merged, test.getMerged().get(paramName), ERROR_MESSAGE);
+
+ String key = test.getMerged().keySet().iterator().next();
+ final Pair<Object, Boolean> result =
+ enforcer.apply(test.getMetadata().get(key), merged);
+ if (test.getError() != null) {
+ Assert.assertFalse(result.getSecond(), ERROR_MESSAGE);
+ Assert.assertEquals(test.getError(), "invalid_metadata", ERROR_MESSAGE);
+ } else {
+ Assert.assertTrue(result.getSecond(), ERROR_MESSAGE);
+ if (test.getResolved().containsKey(key)) {
+ if (result.getFirst() instanceof List<?> list) {
+ Assert.assertTrue(equalIgnoreOrder(list, (List<?>) test.getResolved().get(key)),
+ ERROR_MESSAGE);
+ } else {
+ Assert.assertEquals(result.getFirst(), test.getResolved().get(key), ERROR_MESSAGE);
+ }
+ } else {
+ Assert.assertTrue(result.getFirst() == null, ERROR_MESSAGE);
+ }
+ }
+ } else {
+ Assert.assertFalse(mergingResult.getSecond(), ERROR_MESSAGE);
+ Assert.assertEquals(test.getError(), "invalid_policy", ERROR_MESSAGE);
+ }
+ }
+ }
+
+ protected List<Connect2IdMetadataPolicyTestVector> loadPolicyTestVectors() throws IOException {
+ final ObjectMapper objectMapper = new ObjectMapper();
+ SimpleModule module = new SimpleModule();
+ module.addDeserializer(MetadataPolicy.class, new FederationMetadataPolicyDeserializer());
+ objectMapper.registerModule(module);
+ 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<Connect2IdMetadataPolicyTestVector> policies =
+ objectMapper.readValue(file.getContentAsString(utf8),
+ new TypeReference<List<Connect2IdMetadataPolicyTestVector>>(){});
+ Assert.assertNotNull(policies);
+ assert policies != null;
+ return policies;
+ } catch (final JsonProcessingException e) {
+ throw new IOException("Could not parse JSON from the input", e);
+ }
+ }
+
+ private <T extends AbstractFederationMetadataPolicyOperator> FederationMetadataPolicyOperator
+ initializeOperator(final T operator) throws ComponentInitializationException {
+ operator.setId("mock" + operator.getClass().toString());
+ operator.initialize();
+ return operator;
+ }
+
+ protected void assertEqualsDeep(final MetadataPolicy actual, final MetadataPolicy expected,
+ final String message) {
+ Assert.assertNotNull(actual, message);
+ Assert.assertNotNull(expected, message);
+ Assert.assertTrue(equalIgnoreOrder(actual.getSubsetOfValues(), expected.getSubsetOfValues()), message);
+ compareListOrValue(actual.getAdd(), expected.getAdd(), message);
+ compareListOrValue(actual.getDefaultValue(), expected.getDefaultValue(), message);
+ compareListOrValue(actual.getValue(), expected.getValue(), message);
+ Assert.assertTrue(equalIgnoreOrder(actual.getOneOfValues(), expected.getOneOfValues()), message);
+ Assert.assertTrue(equalIgnoreOrder(actual.getSupersetOfValues(), expected.getSupersetOfValues()), message);
+ compareListOrValue(actual.getRegexp(), expected.getRegexp(), message);
+ compareListOrValue(actual.isEssential(), expected.isEssential(), message);
+ compareListOrValue(actual.getCustomOperators(), expected.getCustomOperators(), message);
+ }
+
+ private void compareListOrValue(final Object actual, final Object expected, final String message) {
+ if (actual instanceof final List actualAsList) {
+ if (expected instanceof final List expectedAsList) {
+ Assert.assertTrue(equalIgnoreOrder(actualAsList, expectedAsList), message);
+ } else {
+ Assert.fail(message);
+ }
+ } else {
+ Assert.assertEquals(actual, expected, message);
+ }
+ }
+
+ private boolean equalIgnoreOrder(final List<?> list1, final List<?> list2) {
+ if (list1 == null) {
+ return list2 == null;
+ }
+ if (list2 == null) {
+ return false;
+ }
+ if (list1.size() != list2.size()) return false;
+ for (final Object item : list1) {
+ if (Collections.frequency(list1, item) != Collections.frequency(list2, item)) {
+ return false;
+ }
+ }
+ return true;
+ }
+}
diff --git a/idp-oidc-extension-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/Connect2IdMetadataPolicyTestVector.java b/idp-oidc-extension-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/Connect2IdMetadataPolicyTestVector.java
new file mode 100644
index 00000000..c46c52b5
--- /dev/null
+++ b/idp-oidc-extension-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/Connect2IdMetadataPolicyTestVector.java
@@ -0,0 +1,136 @@
+/*
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package net.shibboleth.idp.plugin.oidc.op.oidfed.metadata.policy.impl;
+
+import java.util.List;
+import java.util.Map;
+
+import com.fasterxml.jackson.annotation.JsonProperty;
+
+import net.shibboleth.oidc.metadata.policy.MetadataPolicy;
+
+/**
+ * A single test vector as described at: https://connect2id.com/blog/metadata-policy-test-vectors-openid-federation
+ */
+public class Connect2IdMetadataPolicyTestVector {
+
+ /** The number identifying the test vector. */
+ @JsonProperty("n") private Integer testVectorNumber;
+
+ /** The list describing the operator combination. */
+ @JsonProperty("combination") private List<String> combination;
+
+ /** The trust anchor metadata policy. */
+ @JsonProperty("TA") private Map<String, MetadataPolicy> trustAnchor;
+
+ /** The intermediate metadata policy. */
+ @JsonProperty("INT") private Map<String, MetadataPolicy> intermediate;
+
+ /** The merged trust anchor and intermediate metadata policy. */
+ @JsonProperty("merged") private Map<String, MetadataPolicy> merged;
+
+ /** The resolved metadata, */
+ @JsonProperty("resolved") private Map<String, Object> resolved;
+
+ /** The input metadata. */
+ @JsonProperty("metadata") private Map<String, Object> metadata;
+
+ /** The expected error with possible values 'invalid_policy' or 'invalid_metadata'. */
+ @JsonProperty("error") private String error;
+
+ /** The error description. */
+ @JsonProperty("error_description") private String errorDescription;
+
+ /**
+ * Get the trust anchor.
+ *
+ * @return the ta.
+ */
+ public final Map<String, MetadataPolicy> getTrustAnchor() {
+ return trustAnchor;
+ }
+
+ /**
+ * Get the intermediate policy.
+ *
+ * @return the intermediate.
+ */
+ public final Map<String, MetadataPolicy> getIntermediate() {
+ return intermediate;
+ }
+
+ /**
+ * Get the merged policy.
+ *
+ * @return the merged.
+ */
+ public final Map<String, MetadataPolicy> getMerged() {
+ return merged;
+ }
+
+ /**
+ * Get the resolved policy.
+ *
+ * @return the resolved policy.
+ */
+ public final Map<String, Object> getResolved() {
+ return resolved;
+ }
+
+ /**
+ * Get the test number.
+ *
+ * @return the testNo.
+ */
+ public final Integer getTestVectorNumber() {
+ return testVectorNumber;
+ }
+
+ /**
+ * Get the combination policy.
+ *
+ * @return the combination.
+ */
+ public List<String> getCombination() {
+ return combination;
+ }
+
+ /**
+ * Get the metadata policy of the leaf.
+ *
+ * @return the metadata policy.
+ */
+ public Map<String, Object> getMetadata() {
+ return metadata;
+ }
+
+ /**
+ * Get the error message.
+ *
+ * @return the error.
+ */
+ public String getError() {
+ return error;
+ }
+
+ /**
+ * Get the error description.
+ *
+ * @return the errorDescription.
+ */
+ public String getErrorDescription() {
+ return errorDescription;
+ }
+}
\ No newline at end of file
diff --git a/idp-oidc-extension-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicyEnforcerTest.java b/idp-oidc-extension-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicyEnforcerTest.java
new file mode 100644
index 00000000..7bf7558f
--- /dev/null
+++ b/idp-oidc-extension-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/policy/impl/DefaultFederationMetadataPolicyEnforcerTest.java
@@ -0,0 +1,450 @@
+/*
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package net.shibboleth.idp.plugin.oidc.op.oidfed.metadata.policy.impl;
+
+import java.util.Collections;
+import java.util.List;
+import java.util.Optional;
+
+import org.testng.Assert;
+import org.testng.annotations.BeforeMethod;
+import org.testng.annotations.Test;
+
+import net.shibboleth.idp.plugin.oidc.op.oidfed.metadata.policy.FederationMetadataPolicyOperator;
+import net.shibboleth.oidc.metadata.policy.MetadataPolicy;
+import net.shibboleth.shared.collection.Pair;
+import net.shibboleth.shared.component.ComponentInitializationException;
+
+/**
+ * Unit tests for {@link FederationDefaultMetadataPolicyEnforcer}.
+ */
+ at SuppressWarnings(value={"javadoc","null"})
+public class DefaultFederationMetadataPolicyEnforcerTest {
+
+ DefaultFederationMetadataPolicyEnforcer applier;
+
+ @BeforeMethod
+ public void init() throws ComponentInitializationException {
+ applier = new DefaultFederationMetadataPolicyEnforcer();
+ applier.setId("mockApplier");
+ applier.setMetadataPolicyOperators(List.of(
+ initializeOperator(new DefaultFederationMetadataPolicyValueOperator()),
+ initializeOperator(new DefaultFederationMetadataPolicyAddOperator()),
+ initializeOperator(new DefaultFederationMetadataPolicyDefaultOperator()),
+ initializeOperator(new DefaultFederationMetadataPolicyOneOfOperator()),
+ initializeOperator(new DefaultFederationMetadataPolicySubsetOfOperator()),
+ initializeOperator(new DefaultFederationMetadataPolicySupersetOfOperator()),
+ initializeOperator(new DefaultFederationMetadataPolicyEssentialOperator())));
+ applier.initialize();
+ }
+
+ private <T extends AbstractFederationMetadataPolicyOperator> FederationMetadataPolicyOperator
+ initializeOperator(final T operator) throws ComponentInitializationException {
+ operator.setId("mockId");
+ operator.initialize();
+ return operator;
+ }
+
+ @Test
+ public void apply_whenValueSetToNull_resultIsValueWithTrue() {
+ final String stringValue = "mockValue";
+ assertResultEquals(
+ applier.apply(null, new MetadataPolicy.Builder().withValue(stringValue).build()),
+ stringValue);
+ final List<String> listValue = List.of("value1", "value2");
+ assertResultEquals(
+ applier.apply(null, new MetadataPolicy.Builder().withValue(listValue).build()),
+ listValue);
+ final int intValue = 123;
+ assertResultEquals(
+ applier.apply(null, new MetadataPolicy.Builder().withValue(intValue).build()),
+ intValue);
+ final boolean booleanValue = true;
+ assertResultEquals(
+ applier.apply(null, new MetadataPolicy.Builder().withValue(booleanValue).build()),
+ booleanValue);
+ }
+
+ @Test
+ public void apply_whenPolicyValueIsEmptyOptional_resultIsNullWithTrue() {
+ final Optional<?> optional = Optional.empty();
+ final String stringValue = "mockValue";
+ assertResultEquals(
+ applier.apply(null, new MetadataPolicy.Builder().withValue(optional).build()),
+ null);
+ assertResultEquals(
+ applier.apply(stringValue, new MetadataPolicy.Builder().withValue(optional).build()),
+ null);
+ final List<String> listValue = List.of("value1", "value2");
+ assertResultEquals(
+ applier.apply(null, new MetadataPolicy.Builder().withValue(optional).build()),
+ null);
+ assertResultEquals(
+ applier.apply(listValue, new MetadataPolicy.Builder().withValue(optional).build()),
+ null);
+ final int intValue = 123;
+ assertResultEquals(
+ applier.apply(null, new MetadataPolicy.Builder().withValue(optional).build()),
+ null);
+ assertResultEquals(
+ applier.apply(intValue, new MetadataPolicy.Builder().withValue(optional).build()),
+ null);
+ final boolean booleanValue = true;
+ assertResultEquals(
+ applier.apply(null, new MetadataPolicy.Builder().withValue(optional).build()),
+ null);
+ assertResultEquals(
+ applier.apply(booleanValue, new MetadataPolicy.Builder().withValue(optional).build()),
+ null);
+ }
+
+ @Test
+ public void apply_whenValueSetToSomething_resultIsValueWithTrue() {
+ final String stringValue = "mockValue";
+ assertResultEquals(
+ applier.apply(4321, new MetadataPolicy.Builder().withValue(stringValue).build()),
+ stringValue);
+ final List<String> listValue = List.of("value1", "value2");
+ assertResultEquals(
+ applier.apply("mock", new MetadataPolicy.Builder().withValue(listValue).build()),
+ listValue);
+ final int intValue = 123;
+ assertResultEquals(
+ applier.apply(false, new MetadataPolicy.Builder().withValue(intValue).build()),
+ intValue);
+ final boolean booleanValue = true;
+ assertResultEquals(
+ applier.apply(List.of("1"), new MetadataPolicy.Builder().withValue(booleanValue).build()),
+ booleanValue);
+ }
+
+ @Test
+ public void apply_whenAddToDifferentSingleExistingCandidate_resultIsFalse() {
+ assertResultFalse(
+ applier.apply("existing", new MetadataPolicy.Builder().withAdd("another").build()));
+ assertResultFalse(
+ applier.apply("existing", new MetadataPolicy.Builder().withAdd(List.of("another"))
+ .build()));
+ assertResultFalse(
+ applier.apply(123, new MetadataPolicy.Builder().withAdd(321).build()));
+ assertResultFalse(
+ applier.apply(true, new MetadataPolicy.Builder().withAdd(false).build()));
+ }
+
+ @Test
+ public void apply_whenAddToListCandidate_resultIsMergedWithTrue() {
+ final List<String> listValue = List.of("value1", "value2");
+ assertResultEquals(
+ applier.apply(List.of("value0"),
+ new MetadataPolicy.Builder().withAdd(listValue).build()),
+ List.of("value0", "value1", "value2"));
+ final List<Integer> intValues = List.of(123);
+ assertResultEquals(
+ applier.apply(List.of(321), new MetadataPolicy.Builder().withAdd(intValues).build()),
+ List.of(321, 123));
+ final List<Boolean> booleanValues = List.of(true);
+ assertResultEquals(
+ applier.apply(List.of(false), new MetadataPolicy.Builder().withAdd(booleanValues).build()),
+ List.of(false, true));
+ }
+
+ @Test
+ public void apply_whenNoCandidateAndDefaultSet_resultIsDefaultWithTrue() {
+ assertResultEquals(
+ applier.apply(null, new MetadataPolicy.Builder().withDefaultValue("default").build()),
+ "default");
+ assertResultEquals(
+ applier.apply(null, new MetadataPolicy.Builder().withDefaultValue(List.of("default"))
+ .build()),
+ List.of("default"));
+ assertResultEquals(
+ applier.apply(null, new MetadataPolicy.Builder().withDefaultValue(123).build()),
+ 123);
+ assertResultEquals(
+ applier.apply(null, new MetadataPolicy.Builder().withDefaultValue(true).build()),
+ true);
+ }
+
+ @Test
+ public void apply_whenCandidateAndDefaultSet_resultIsCandidateWithTrue() {
+ assertResultEquals(
+ applier.apply("existing", new MetadataPolicy.Builder()
+ .withDefaultValue("default").build()),
+ "existing");
+ assertResultEquals(
+ applier.apply(List.of("existing"), new MetadataPolicy.Builder()
+ .withDefaultValue(List.of("default")).build()),
+ List.of("existing"));
+ assertResultEquals(
+ applier.apply(321, new MetadataPolicy.Builder().withDefaultValue(123).build()),
+ 321);
+ assertResultEquals(
+ applier.apply(false, new MetadataPolicy.Builder().withDefaultValue(true).build()),
+ false);
+ }
+
+ @Test
+ public void apply_whenEssentialAndNoValue_resultIsFalse() {
+ assertResultFalse(applier.apply(null, new MetadataPolicy.Builder().withEssential(true).build()));
+ }
+
+ @Test
+ public void apply_whenNonEssentialAndNoValue_resultIsNullWithTrue() {
+ // default is that essential=false
+ assertResultEquals(applier.apply(null, new MetadataPolicy.Builder().build()),
+ null);
+ assertResultEquals(applier.apply(null, new MetadataPolicy.Builder().withEssential(false).build()),
+ null);
+ }
+
+ @Test
+ public void apply_whenOneOfMeetsValue_resultIsCandidateWithTrue() {
+ assertResultEquals(
+ applier.apply("existing", new MetadataPolicy.Builder().withOneOfValues(List.of("existing"))
+ .build()),
+ "existing");
+ assertResultEquals(
+ applier.apply("existing", new MetadataPolicy.Builder().withOneOfValues(List.of("existing",
+ "another")).build()),
+ "existing");
+ assertResultEquals(
+ applier.apply(123, new MetadataPolicy.Builder().withOneOfValues(List.of(123))
+ .build()),
+ 123);
+ assertResultEquals(
+ applier.apply(123, new MetadataPolicy.Builder().withOneOfValues(List.of(123, 321))
+ .build()),
+ 123);
+ assertResultEquals(
+ applier.apply(true, new MetadataPolicy.Builder().withOneOfValues(List.of(true))
+ .build()),
+ true);
+ assertResultEquals(
+ applier.apply(true, new MetadataPolicy.Builder().withOneOfValues(List.of(true, false))
+ .build()),
+ true);
+ }
+
+ @Test
+ public void apply_whenOneOfNotMeetingValue_resultIsFalse() {
+ assertResultFalse(
+ applier.apply(List.of("existing", "another"), new MetadataPolicy.Builder().withOneOfValues(
+ List.of("existing", "another")).build()));
+ assertResultFalse(
+ applier.apply(List.of("not"), new MetadataPolicy.Builder().withOneOfValues(
+ List.of("existing", "another")).build()));
+ assertResultFalse(
+ applier.apply("not", new MetadataPolicy.Builder().withOneOfValues(List.of("existing"))
+ .build()));
+ assertResultFalse(
+ applier.apply("not", new MetadataPolicy.Builder().withOneOfValues(List.of("existing",
+ "another")).build()));
+ assertResultFalse(
+ applier.apply(123, new MetadataPolicy.Builder().withOneOfValues(List.of(321))
+ .build()));
+ assertResultFalse(
+ applier.apply(123, new MetadataPolicy.Builder().withOneOfValues(List.of(321, 322))
+ .build()));
+ assertResultFalse(
+ applier.apply(List.of(123), new MetadataPolicy.Builder().withOneOfValues(List.of(321))
+ .build()));
+ assertResultFalse(
+ applier.apply(List.of(123), new MetadataPolicy.Builder().withOneOfValues(List.of(321, 322))
+ .build()));
+ assertResultFalse(
+ applier.apply(true, new MetadataPolicy.Builder().withOneOfValues(List.of(false))
+ .build()));
+ assertResultFalse(
+ applier.apply(false, new MetadataPolicy.Builder().withOneOfValues(List.of(true))
+ .build()));
+ assertResultFalse(
+ applier.apply(List.of(true), new MetadataPolicy.Builder().withOneOfValues(List.of(false))
+ .build()));
+ assertResultFalse(
+ applier.apply(List.of(false), new MetadataPolicy.Builder().withOneOfValues(List.of(true))
+ .build()));
+ }
+
+ @Test
+ public void apply_whenSubsetOfMeetsValue_resultIsCandidateWithTrue() {
+ // list of values
+ assertResultEquals(
+ applier.apply(List.of("existing", "another"),
+ new MetadataPolicy.Builder().withSubsetOfValues(List.of("existing", "another")).build()),
+ List.of("existing", "another"));
+ assertResultEquals(
+ applier.apply(List.of("existing", "another"),
+ new MetadataPolicy.Builder().withSubsetOfValues(List.of(
+ "existing", "another", "yet_another")).build()),
+ List.of("existing", "another"));
+ assertResultEquals(
+ applier.apply(List.of(123, 321), new MetadataPolicy.Builder()
+ .withSubsetOfValues(List.of(123, 321)).build()),
+ List.of(123, 321));
+ assertResultEquals(
+ applier.apply(List.of(123, 321), new MetadataPolicy.Builder()
+ .withSubsetOfValues(List.of(123, 321, 213)).build()),
+ List.of(123, 321));
+ assertResultEquals(
+ applier.apply(List.of(true), new MetadataPolicy.Builder().withSubsetOfValues(List.of(true))
+ .build()),
+ List.of(true));
+ assertResultEquals(
+ applier.apply(List.of(true, false), new MetadataPolicy.Builder()
+ .withSubsetOfValues(List.of(true, false)).build()),
+ List.of(true, false));
+ }
+
+ @Test
+ public void apply_whenSubsetOfNotMeetingValue_resultIsFalse() {
+ // single values
+ assertResultFalse(
+ applier.apply("not", new MetadataPolicy.Builder().withSubsetOfValues(List.of(
+ "existing")).build()));
+ assertResultFalse(
+ applier.apply("not", new MetadataPolicy.Builder().withSubsetOfValues(List.of(
+ "existing", "another")).build()));
+ assertResultFalse(
+ applier.apply(321, new MetadataPolicy.Builder().withSubsetOfValues(List.of(123))
+ .build()));
+ assertResultFalse(
+ applier.apply(123, new MetadataPolicy.Builder().withSubsetOfValues(List.of(223, 321))
+ .build()));
+ assertResultFalse(
+ applier.apply(true, new MetadataPolicy.Builder().withSubsetOfValues(List.of(false))
+ .build()));
+ assertResultFalse(
+ applier.apply(false, new MetadataPolicy.Builder().withSubsetOfValues(List.of(true))
+ .build()));
+
+ // empty intersections
+ assertResultEquals(
+ applier.apply(List.of("not"),
+ new MetadataPolicy.Builder().withSubsetOfValues(List.of("existing", "another")).build()),
+ Collections.emptyList());
+ assertResultEquals(
+ applier.apply(List.of("not", "neither"),
+ new MetadataPolicy.Builder().withSubsetOfValues(List.of(
+ "existing", "another", "yet_another")).build()),
+ Collections.emptyList());
+
+ assertResultEquals(
+ applier.apply(List.of(123), new MetadataPolicy.Builder()
+ .withSubsetOfValues(List.of(321, 432)).build()),
+ Collections.emptyList());
+
+ assertResultEquals(
+ applier.apply(List.of(123, 321), new MetadataPolicy.Builder()
+ .withSubsetOfValues(List.of(124, 213)).build()),
+ Collections.emptyList());
+
+ assertResultEquals(
+ applier.apply(List.of(true), new MetadataPolicy.Builder()
+ .withSubsetOfValues(List.of(false)).build()),
+ Collections.emptyList());
+
+ assertResultEquals(
+ applier.apply(List.of(false), new MetadataPolicy.Builder()
+ .withSubsetOfValues(List.of(true)).build()),
+ Collections.emptyList());
+
+ }
+
+ @Test
+ public void apply_whenSupersetOfMeetsValue_resultIsCandidateWithTrue() {
+ // list of values
+ assertResultEquals(
+ applier.apply(List.of("existing", "another"),
+ new MetadataPolicy.Builder().withSupersetOfValues(List.of("existing", "another")).build()),
+ List.of("existing", "another"));
+ assertResultEquals(
+ applier.apply(List.of("existing", "another"),
+ new MetadataPolicy.Builder().withSupersetOfValues(List.of(
+ "existing")).build()),
+ List.of("existing", "another"));
+ assertResultEquals(
+ applier.apply(List.of(123, 321), new MetadataPolicy.Builder()
+ .withSupersetOfValues(List.of(123, 321)).build()),
+ List.of(123, 321));
+ assertResultEquals(
+ applier.apply(List.of(123, 321, 213), new MetadataPolicy.Builder()
+ .withSupersetOfValues(List.of(123)).build()),
+ List.of(123, 321, 213));
+ assertResultEquals(
+ applier.apply(List.of(true), new MetadataPolicy.Builder()
+ .withSupersetOfValues(List.of(true)).build()),
+ List.of(true));
+ assertResultEquals(
+ applier.apply(List.of(true, false), new MetadataPolicy.Builder()
+ .withSupersetOfValues(List.of(false)).build()),
+ List.of(true, false));
+ }
+
+ @Test
+ public void apply_whenSupersetOfNotMeetingValue_resultIsFalse() {
+ // single values
+ assertResultFalse(
+ applier.apply("not", new MetadataPolicy.Builder().withSupersetOfValues(List.of(
+ "existing")).build()));
+ assertResultFalse(
+ applier.apply("not", new MetadataPolicy.Builder().withSupersetOfValues(List.of(
+ "existing", "another")).build()));
+ assertResultFalse(
+ applier.apply(321, new MetadataPolicy.Builder().withSupersetOfValues(List.of(123))
+ .build()));
+ assertResultFalse(
+ applier.apply(123, new MetadataPolicy.Builder().withSupersetOfValues(List.of(223, 321))
+ .build()));
+ assertResultFalse(
+ applier.apply(true, new MetadataPolicy.Builder().withSupersetOfValues(List.of(false))
+ .build()));
+ assertResultFalse(
+ applier.apply(false, new MetadataPolicy.Builder().withSupersetOfValues(List.of(true))
+ .build()));
+
+ // list of values
+ assertResultFalse(
+ applier.apply(List.of("not"),
+ new MetadataPolicy.Builder().withSupersetOfValues(List.of("not", "another")).build()));
+ assertResultFalse(
+ applier.apply(List.of("not", "neither"),
+ new MetadataPolicy.Builder().withSupersetOfValues(List.of(
+ "not", "neither", "another")).build()));
+ assertResultFalse(
+ applier.apply(List.of(123), new MetadataPolicy.Builder()
+ .withSupersetOfValues(List.of(123, 321)).build()));
+ assertResultFalse(
+ applier.apply(List.of(123, 321), new MetadataPolicy.Builder()
+ .withSupersetOfValues(List.of(123, 321, 213)).build()));
+ assertResultFalse(
+ applier.apply(List.of(true), new MetadataPolicy.Builder()
+ .withSupersetOfValues(List.of(false)).build()));
+ assertResultFalse(
+ applier.apply(List.of(false), new MetadataPolicy.Builder()
+ .withSupersetOfValues(List.of(true, false)).build()));
+ }
+
+ public static void assertResultEquals(final Pair<Object, Boolean> pair, final Object expected) {
+ final Boolean flag = pair.getSecond();
+ Assert.assertNotNull(flag);
+ Assert.assertTrue(flag.booleanValue());
+ Assert.assertEquals(pair.getFirst(), expected);
+ }
+
+ public static void assertResultFalse(final Pair<Object, Boolean> pair) {
+ final Boolean flag = pair.getSecond();
+ Assert.assertFalse(flag != null && flag);
+ }
+}
diff --git a/idp-oidc-extension-impl/src/test/resources/net/shibboleth/idp/oidc/metadata/impl/metadata-policy-test-vectors-2025-02-13.json b/idp-oidc-extension-impl/src/test/resources/net/shibboleth/idp/oidc/metadata/impl/metadata-policy-test-vectors-2025-02-13.json
new file mode 100644
index 00000000..c70ca6bf
--- /dev/null
+++ b/idp-oidc-extension-impl/src/test/resources/net/shibboleth/idp/oidc/metadata/impl/metadata-policy-test-vectors-2025-02-13.json
@@ -0,0 +1,50299 @@
+[
+ {
+ "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.