Identifies a subset of entities in a project. This is specified as combinations of kinds and namespaces (either or both of which may be all, as described in the following examples). Example usage:
Entire project: kinds=[], namespaceIds=[]
Kinds Foo and Bar in all namespaces: kinds=['Foo', 'Bar'], namespaceIds=[]
Kinds Foo and Bar only in the default namespace: kinds=['Foo', 'Bar'], namespaceIds=['']
Kinds Foo and Bar in both the default and Baz namespaces: kinds=['Foo', 'Bar'], namespaceIds=['', 'Baz']
The entire Baz namespace: kinds=[], namespaceIds=['Baz']
JSON representation
{"kinds": [string],"namespaceIds": [string]}
Fields
kinds[]
string
If empty, then this represents all kinds.
namespaceIds[]
string
An empty list represents all namespaces. This is the preferred usage for projects that don't use namespaces.
An empty string element represents the default namespace. This should be used if the project has data in non-default namespaces, but doesn't want to include them. Each namespace in this list must be unique.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-04-30 UTC."],[[["The content describes a JSON representation for identifying subsets of entities within a project."],["Subsets are defined by combinations of entity kinds and namespaces, where either or both can represent all possible values."],["Empty `kinds` array represents all entity kinds, and an empty `namespaceIds` array represents all namespaces."],["An empty string within the `namespaceIds` list refers to the project's default namespace."],["The `kinds` and `namespaceIds` fields are of type string."]]],[]]