
Company News
/Security News
Socket Selected for OpenAI's Cybersecurity Grant Program
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.
@typespec/openapi
Advanced tools
TypeSpec library providing OpenAPI concepts
npm install @typespec/openapi
@defaultResponseSpecify that this model is to be treated as the OpenAPI default response.
This differs from the compiler built-in @error decorator as this does not necessarily represent an error.
@TypeSpec.OpenAPI.defaultResponse
Model
None
@defaultResponse
model PetStoreResponse is object;
op listPets(): Pet[] | PetStoreResponse;
@extensionAttach some custom data to the OpenAPI element generated from this type.
@TypeSpec.OpenAPI.extension(key: valueof string, value: valueof unknown)
unknown
| Name | Type | Description |
|---|---|---|
| key | valueof string | Extension key. |
| value | valueof unknown | Extension value. |
@extension("x-custom", "My value")
@extension("x-pageable", #{ nextLink: "x-next-link" })
op read(): string;
@externalDocsSpecify the OpenAPI externalDocs property for this type.
@TypeSpec.OpenAPI.externalDocs(url: valueof string, description?: valueof string)
unknown
| Name | Type | Description |
|---|---|---|
| url | valueof string | Url to the docs |
| description | valueof string | Description of the docs |
@externalDocs(
"https://example.com/detailed.md",
"Detailed information on how to use this operation"
)
op listPets(): Pet[];
@infoSpecify OpenAPI additional information.
The service title is already specified using @service.
@TypeSpec.OpenAPI.info(additionalInfo: valueof TypeSpec.OpenAPI.AdditionalInfo)
Namespace
| Name | Type | Description |
|---|---|---|
| additionalInfo | valueof AdditionalInfo | Additional information |
@operationIdSpecify the OpenAPI operationId property for this operation.
@TypeSpec.OpenAPI.operationId(operationId: valueof string)
Operation
| Name | Type | Description |
|---|---|---|
| operationId | valueof string | Operation id value. |
@operationId("download")
op read(): string;
@tagMetadataSpecify OpenAPI additional information.
@TypeSpec.OpenAPI.tagMetadata(name: valueof string, tagMetadata: valueof TypeSpec.OpenAPI.TagMetadata)
Namespace
| Name | Type | Description |
|---|---|---|
| name | valueof string | tag name |
| tagMetadata | valueof TagMetadata | Additional information |
@service
@tagMetadata(
"Tag Name",
#{
description: "Tag description",
externalDocs: #{ url: "https://example.com", description: "More info.", `x-custom`: "string" },
`x-custom`: "string",
}
)
@tagMetadata("Child Tag", #{ description: "Child tag description", parent: "Tag Name" })
namespace PetStore {
}
FAQs
TypeSpec library providing OpenAPI concepts
The npm package @typespec/openapi receives a total of 107,075 weekly downloads. As such, @typespec/openapi popularity was classified as popular.
We found that @typespec/openapi demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.

Security News
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.

Research
/Security News
Campaign of 108 extensions harvests identities, steals sessions, and adds backdoors to browsers, all tied to the same C2 infrastructure.