Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions draft.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ This is the root object of the OpenCLI Description.
| Field Name | Type | Description |
|------------|:----:|-------------|
| title | `string` | **REQUIRED** The application title |
| summary | `string` | A short summary of the application |
| description | `string` | A description of the application |
| contact | [Contact Object](#contact-object) | The contact information |
| license | [License Object](#license-object) | The application license |
Expand Down
4 changes: 4 additions & 0 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@
"type": "string",
"description": "The application title"
},
"summary": {
"type": "string",
"description": "A short summary of the application"
},
"description": {
"type": "string",
"description": "A description of the application"
Expand Down
3 changes: 3 additions & 0 deletions typespec/main.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ model CliInfo {
@doc("The application title")
title: string;

@doc("A short summary of the application")
summary?: string;

@doc("A description of the application")
description?: string;

Expand Down