-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.Net: Feat: adds support for Microsoft Manifest in dotnet and other fixes. #9436
base: main
Are you sure you want to change the base?
Changes from all commits
ee3312b
8f9bd38
987c3bc
b93e6ac
b1320fe
177e126
99ac5cc
0a4fedd
f2ebca2
e33690a
6d462a8
a379579
c77eb72
20435c6
8dd2906
11d2391
2c7cc8c
d47a812
c98cbcc
529dc0d
d98ba29
d435b51
65543ed
7fa549c
814a45c
a6e9529
927723d
882ed3b
3e0c0c3
3471e31
2b7d722
b2c2ee4
0707600
3b2c3c2
5fdd657
8871dcf
93eb850
0fe5fa6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
{ | ||
"applicationName": "application", | ||
"apiDependencies": { | ||
"Calendar": { | ||
"apiDescriptionUrl": "https://raw.githubusercontent.com/microsoftgraph/msgraph-metadata/master/openapi/v1.0/graphexplorer.yaml", | ||
"apiDeploymentBaseUrl": "https://graph.microsoft.com/v1.0/", | ||
"requests": [ | ||
{ | ||
"method": "GET", | ||
"uriTemplate": "me/calendar/events" | ||
} | ||
], | ||
"extensions": { | ||
"x-ms-kiota-hash": "29814D37A98A70300C212A353CCD01919F5B58D6C8F741C4948E4B7A5FDAA44B", | ||
"x-ms-kiota-version": "1.20.0-preview.202410170001" | ||
} | ||
}, | ||
"Contacts": { | ||
"apiDescriptionUrl": "https://raw.githubusercontent.com/microsoftgraph/msgraph-metadata/master/openapi/v1.0/graphexplorer.yaml", | ||
"apiDeploymentBaseUrl": "https://graph.microsoft.com/v1.0/", | ||
"requests": [ | ||
{ | ||
"method": "GET", | ||
"uriTemplate": "me/contacts" | ||
} | ||
], | ||
"extensions": { | ||
"x-ms-kiota-hash": "21808D91F876D396FF383233E2CC18B4DD82CDFE2A403B155CBAEC18808808E2", | ||
"x-ms-kiota-version": "1.20.0-preview.202410170001" | ||
} | ||
}, | ||
"DriveItem": { | ||
"apiDescriptionUrl": "https://raw.githubusercontent.com/microsoftgraph/msgraph-metadata/master/openapi/v1.0/graphexplorer.yaml", | ||
"apiDeploymentBaseUrl": "https://graph.microsoft.com/v1.0/", | ||
"requests": [ | ||
{ | ||
"method": "GET", | ||
"uriTemplate": "drive/root/children/{driveItem-id}/content" | ||
} | ||
], | ||
"extensions": { | ||
"x-ms-kiota-hash": "883D3BE04064138511FB79FDB1C2A7883D9E8F492481A04F0D55AA75B63CA642", | ||
"x-ms-kiota-version": "1.20.0-preview.202410170001" | ||
} | ||
}, | ||
"Messages": { | ||
"apiDescriptionUrl": "https://raw.githubusercontent.com/microsoftgraph/msgraph-metadata/master/openapi/v1.0/graphexplorer.yaml", | ||
"apiDeploymentBaseUrl": "https://graph.microsoft.com/v1.0/", | ||
"requests": [ | ||
{ | ||
"method": "GET", | ||
"uriTemplate": "me/messages" | ||
}, | ||
{ | ||
"method": "POST", | ||
"uriTemplate": "me/messages" | ||
} | ||
], | ||
"extensions": { | ||
"x-ms-kiota-hash": "C8360ADB984F44449D607A0517A4AE13A7BF0BF2F53FA7AA147257F49D6BBF8F", | ||
"x-ms-kiota-version": "1.20.0-preview.202410170001" | ||
} | ||
}, | ||
"Astronomy": { | ||
"apiDescriptionUrl": "https://raw.githubusercontent.com/zengin/openapi-directory/zengin/nasa/APIs/nasa.gov/apod/1.0.0/openapi.yaml", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we should not take a dependency on my account here. Is there any chance this file can be moved to a Microsoft owned location? I think I needed a copy for adding auth details. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sure, we can point it somewhere else. Do you remember where you took it from? |
||
"apiDeploymentBaseUrl": "https://api.nasa.gov/planetary/", | ||
"requests": [ | ||
{ | ||
"method": "GET", | ||
"uriTemplate": "apod" | ||
} | ||
], | ||
"extensions": { | ||
"x-ms-kiota-hash": "F7C689BA3B0415A681458A5B04112EA0E57E45428DA08AD23DE7C8E00610086B", | ||
"x-ms-kiota-version": "1.20.0-preview.202410170001" | ||
} | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
openapi: 3.0.0 | ||
servers: | ||
- url: https://api.nasa.gov/planetary | ||
- url: http://api.nasa.gov/planetary | ||
info: | ||
contact: | ||
email: [email protected] | ||
description: This endpoint structures the APOD imagery and associated metadata | ||
so that it can be repurposed for other applications. In addition, if the | ||
concept_tags parameter is set to True, then keywords derived from the image | ||
explanation are returned. These keywords could be used as auto-generated | ||
hashtags for twitter or instagram feeds; but generally help with | ||
discoverability of relevant imagery | ||
license: | ||
name: Apache 2.0 | ||
url: http://www.apache.org/licenses/LICENSE-2.0.html | ||
title: APOD | ||
version: 1.0.0 | ||
x-apisguru-categories: | ||
- media | ||
- open_data | ||
x-origin: | ||
- format: swagger | ||
url: https://raw.githubusercontent.com/nasa/api-docs/gh-pages/assets/json/APOD | ||
version: "2.0" | ||
x-providerName: nasa.gov | ||
x-serviceName: apod | ||
tags: | ||
- description: An example tag | ||
externalDocs: | ||
description: Here's a link | ||
url: https://example.com | ||
name: request tag | ||
paths: | ||
/apod: | ||
get: | ||
description: Returns the picture of the day | ||
parameters: | ||
- description: The date of the APOD image to retrieve | ||
in: query | ||
name: date | ||
required: false | ||
schema: | ||
type: string | ||
- description: Retrieve the URL for the high resolution image | ||
in: query | ||
name: hd | ||
required: false | ||
schema: | ||
type: boolean | ||
responses: | ||
"200": | ||
content: | ||
application/json: | ||
schema: | ||
items: | ||
x-thing: ok | ||
type: array | ||
description: successful operation | ||
"400": | ||
description: Date must be between Jun 16, 1995 and Mar 28, 2019. | ||
security: | ||
- api_key: [] | ||
summary: Returns images | ||
tags: | ||
- request tag | ||
operationId: apod | ||
components: | ||
securitySchemes: | ||
api_key: | ||
in: query | ||
name: api_key | ||
type: apiKey |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider moving all the documents from the
.kiota
folder closer to the code that uses them. If those are required for plugin generation, please move them to the plugins folder and add a README describing how to generate those plugins from the documents.