Skip to content
Open
Changes from 2 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
10 changes: 9 additions & 1 deletion specification.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ The following properties are defined for the metadata document:
| releases | yes | A list of [Releases](#release-document) |
| slug | no | A string that conforms to the rules of [slug](#property-slug) |
| name | no | A string. |
| file | no | A string that conforms to the rules of [file](#property-file) |
| description | no | A string. |
| keywords | no | A list of strings. |
| sections | no | A map that conforms to the rules of [sections](#property-sections) |
Expand Down Expand Up @@ -328,7 +329,14 @@ Clients SHOULD use the slug for file or directory names used during installation

The `name` property specifies a human-readable name for the package, which the client may display in index or list pages.

The name MUST be a string.

### file

The `file` property specifies the file name for the package.

The file MUST be a string containing only alphanumeric characters, dashes, or underscores. The file MUST start with an alphabetic character.

The file MUST be a string.


### description
Expand Down