-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4334ee3
commit 2f18ac9
Showing
3 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"akamai": "Akamai SDK", | ||
"android-client-sdk": "Android Client SDK", | ||
"apex-server-sdk": "Apex Server SDK", | ||
"cloudflare": "Cloudflare SDK", | ||
"cpp-client-sdk": "C++ Client SDK", | ||
"cpp-server-sdk": "C++ Server SDK", | ||
"dotnet-client-sdk": ".NET Client SDK", | ||
"dotnet-server-sdk": ".NET Server SDK", | ||
"electron": "Electron SDK", | ||
"erlang-server-sdk": "Erlang Server SDK", | ||
"flutter-client-sdk": "Flutter Client SDK", | ||
"go-server-sdk": "Go Server SDK", | ||
"haskell-server-sdk": "Haskell Server SDK", | ||
"ios-client-sdk": "iOS Client SDK", | ||
"java-server-sdk": "Java Server SDK", | ||
"javascript-client-sdk": "JavaScript Client SDK", | ||
"lua-server-sdk": "Lua Server SDK", | ||
"node-client-sdk": "Node.js Client SDK", | ||
"node-server-sdk": "Node.js Server SDK", | ||
"php-server-sdk": "PHP Server SDK", | ||
"python-server-sdk": "Python Server SDK", | ||
"react-client-sdk": "React Client SDK", | ||
"react-native-client-sdk": "React Native Client SDK", | ||
"roku-client-sdk": "Roku Client SDK", | ||
"ruby-server-sdk": "Ruby Server SDK", | ||
"rust-server-sdk": "Rust Server SDK", | ||
"vercel-client-sdk": "Vercel SDK", | ||
"vue-client-sdk": "Vue SDK" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"$id": "https://launchdarkly.com/sdk-meta/names.json", | ||
"title": "SDK Names", | ||
"description": "List of SDK friendly names", | ||
"type": "object", | ||
"$defs": { | ||
"SDKName" : { | ||
"type" : "string", | ||
"description" : "The human-readable display name of an SDK", | ||
"pattern" : "^[-+A-Za-z. ]+$" | ||
} | ||
}, | ||
"patternProperties" : { | ||
"^[a-z-]+$" : { | ||
"$ref" : "#/$defs/SDKName" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters