Skip to content
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

chore: add sdk repos #4

Merged
merged 1 commit into from
Mar 7, 2024
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ The data is intended for consumption by downstream products and services.
| [SDK Types](./data/types.json) | SDK types for categorization. |
| [SDK Features](./data/features.json) | SDK features, including version introduced/deprecated. |
| [SDK Languages](./data/languages.json) | Programming languages associated with SDKs. |
| [SDK Repos](./data/repos.json) | SDK source repositories |


## structure
Expand Down
86 changes: 86 additions & 0 deletions data/repos.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
{
"akamai": {
"github": "launchdarkly/js-core"
},
"android-client-sdk": {
"github": "launchdarkly/android-client-sdk"
},
"apex-server-sdk": {
"github": "launchdarkly/apex-server-sdk"
},
"cloudflare": {
"github": "launchdarkly/js-core"
},
"cpp-client-sdk": {
"github": "launchdarkly/cpp-sdks"
},
"cpp-server-sdk": {
"github": "launchdarkly/cpp-sdks"
},
"dotnet-client-sdk": {
"github": "launchdarkly/dotnet-client-sdk"
},
"dotnet-server-sdk": {
"github": "launchdarkly/dotnet-server-sdk"
},
"electron": {
"github": "launchdarkly/electron-client-sdk"
},
"erlang-server-sdk": {
"github": "launchdarkly/erlang-server-sdk"
},
"flutter-client-sdk": {
"github": "launchdarkly/flutter-client-sdk"
},
"go-server-sdk": {
"github": "launchdarkly/go-server-sdk"
},
"haskell-server-sdk": {
"github": "launchdarkly/haskell-server-sdk"
},
"ios-client-sdk": {
"github": "launchdarkly/ios-client-sdk"
},
"java-server-sdk": {
"github": "launchdarkly/java-server-sdk"
},
"javascript-client-sdk": {
"github": "launchdarkly/js-client-sdk"
},
"lua-server-sdk": {
"github": "launchdarkly/lua-server-sdk"
},
"node-client-sdk": {
"github": "launchdarkly/node-client-sdk"
},
"node-server-sdk": {
"github": "launchdarkly/js-core"
},
"php-server-sdk": {
"github": "launchdarkly/php-server-sdk"
},
"python-server-sdk": {
"github": "launchdarkly/python-server-sdk"
},
"react-client-sdk": {
"github": "launchdarkly/react-client-sdk"
},
"react-native-client-sdk": {
"github": "launchdarkly/js-core"
},
"roku-client-sdk": {
"github": "launchdarkly/roku-client-sdk"
},
"ruby-server-sdk": {
"github": "launchdarkly/ruby-server-sdk"
},
"rust-server-sdk": {
"github": "launchdarkly/rust-server-sdk"
},
"vercel-client-sdk": {
"github": "launchdarkly/js-core"
},
"vue-client-sdk": {
"github": "launchdarkly/vue-client-sdk"
}
}
29 changes: 29 additions & 0 deletions schemas/repos.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://launchdarkly.com/sdk-meta/repos.json",
"title": "SDK Repos",
"description": "List of SDK source repositories",
"type": "object",
"$defs": {
"SDKRepoMap" : {
"type": "object",
"description": "Map of source repositories for an SDK",
"required" : ["github"],
"properties": {
"github": {
"$ref": "#/$defs/GithubRepoPath"
}
}
},
"GithubRepoPath" : {
"type": "string",
"description": "An individual Github repo identifier of the form org/repo",
"pattern": "^[a-z-]+/[a-z-]+$"
}
},
"patternProperties" : {
"^[a-z-]+$" : {
"$ref" : "#/$defs/SDKRepoMap"
}
}
}
1 change: 1 addition & 0 deletions scripts/ci/check-json-schemas.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ runTest ./schemas/features.json ./data/features.json
runTest ./schemas/types.json ./data/types.json
runTest ./schemas/names.json ./data/names.json
runTest ./schemas/languages.json ./data/languages.json
runTest ./schemas/repos.json ./data/repos.json