> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# XPackageFeature

> XPackageFeature

# XPackageFeature

Describes a feature.

<a id="syntaxSection" />

## Syntax

```cpp theme={null}
typedef struct XPackageFeature {  
    const char* id;  
    const char* displayName;  
    const char* tags;  
    bool hidden;  
    uint32_t storeIdCount;
    const char** storeIds;
} XPackageFeature  
```

<a id="membersSection" />

### Members

*id*\
Type: const char\*

The feature ID.

*displayName*\
Type: const char\*

The display name that will be shown to the user.

*tags*\
Type: const char\*

The package's feature tags.

*hidden*\
Type: bool

Determines whether the package's feature is hidden.

*storeIdCount*\
Type: uint32\_t

The number of store IDs in the storeIds array.

*storeIds*\
Type: const char\*\*

An array of store IDs associated with this feature through a recipe. If there are no associated store IDs this field will be null.

<a id="remarksSection" />

## Remarks

The `XPackageFeature` structure describes the features of a package.  `XPackageFeature` defines the feature ID, display name, and feature tags. It also determines whether the package's feature is hidden. A feature ID may be related to zero or more store IDs through a recipe. Related store IDs are available on `XPackageFeature`.

For information about the packaging technology used with XBOX One titles, see [Overview of Packaging](/build/core-features/common/packaging/overviews/packaging).

<a id="requirementsSection" />

## Requirements

**Header:** XPackage.h

**Supported platforms:** Windows, XBOX One family consoles and XBOX Series consoles

<a id="seealsoSection" />

## Conceptual documentation

* [Supporting Games-as-a-Service (GaaS)](/build/core-features/common/packaging/supporting-games-as-a-service)

## See also

[XPackageEnumerateFeatures](/reference/system/xpackage/functions/xpackageenumeratefeatures)\
[XPackage](/reference/system/xpackage/xpackage_members)
