- FeatureBundleFeatureResponseDTO
Paginated response carrying a list of entitlements
List of entitlement entities
Represents limit per page for pagination
Represents page for pagination
{ "entitlements": [ { "__typename": "Entitlement" } ], "limit": 40, "page": 40 }
Represents a feature entity in a product context
Feature count
Unique feature name
Version identifier of the feature
{ "count": 40, "name": "Example String", "version": "Example String" }
Represents a feature bundle entity in a product context
Count for the feature bundle
Unique feature bundle name
{ "count": 40, "name": "Example String" }
Response for feature bundle creation
Name of the created feature bundle
Success or error message
{ "featureBundle": "Example String", "message": "Example String" }
Feature within a feature bundle
Name to uniquely identify the feature. Example: "MyFeature"
Quantity of the feature (minimum value is 1). Example: 1
State of the feature. Valid values: draft, deployed, obsolete, inactive.
Version of the feature. Example: "1.0"
{ "featureName": "Example String", "quantity": 40, "state": "Example String", "version": "Example String" }
Feature within a feature bundle (response for getFeatureBundles query)
Feature name
Feature quantity in the bundle
State of the feature
Feature version
{ "name": "Example String", "quantity": 40, "state": "Example String", "version": "Example String" }
Feature bundle details with full information
Description of the feature bundle
Name of the feature bundle
List of features in the bundle
Current state of the feature bundle
{ "description": "Example String", "featureBundleName": "Example String", "featureList": [ { "__typename": "FeatureBundleFeatureResponse" } ], "state": "Example String" }
Response containing a single feature bundle
The feature bundle details
{ "featureBundle": { "__typename": "FeatureBundleGet" } }
Paginated response for feature bundles
List of feature bundles
Pagination information
{ "featureBundles": [ { "__typename": "FeatureBundleResponseDTO" } ], "pagination": { "__typename": "Pagination" } }
Feature bundle response object with summary information
Creation date of the feature bundle
Description of the feature bundle
Name of the feature bundle
List of features in the bundle
Last modification date of the feature bundle
Current state of the feature bundle
{ "creationDate": "Example String", "description": "Example String", "featureBundleName": "Example String", "features": [ { "__typename": "FeatureBundleFeatureResponseDTO" } ], "lastModifiedDate": "Example String", "state": "Example String" }
Response object representing a feature with full details
Creation date of the feature
Description of the feature
Last modification date of the feature
Name of the feature
Override properties for the feature
Current state of the feature (DRAFT, DEPLOYED, OBSOLETE, INACTIVE)
Version of the feature
Version format (FIXED or DATEBASED)
{ "createdOn": "Example String", "description": "Example String", "lastModifiedOn": "Example String", "name": "Example String", "overrideProperties": { "__typename": "OverrideProperties" }, "state": "Example String", "version": "Example String", "versionFormat": "Example String" }