We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 614fc87 commit 300c533Copy full SHA for 300c533
1 file changed
src/frame/lib/frontmatter.ts
@@ -59,6 +59,10 @@ export const contentTypesEnum = [
59
'other', // Everything else.
60
]
61
62
+// Values supported in the docsTeamMetrics frontmatter property. Used to track
63
+// related articles (e.g. by feature or subject) that may span different directories.
64
+export const docsTeamMetricsEnum = ['copilot-cli']
65
+
66
export const schema: Schema = {
67
type: 'object',
68
required: ['title', 'versions'],
@@ -246,6 +250,13 @@ export const schema: Schema = {
246
250
interactive: {
247
251
type: 'boolean',
248
252
},
253
+ docsTeamMetrics: {
254
+ type: 'array',
255
+ items: {
256
+ type: 'string',
257
+ enum: docsTeamMetricsEnum,
258
+ },
259
249
260
communityRedirect: {
261
262
properties: {
0 commit comments