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

Feat: add wallet mobile metadata #24

Merged
merged 6 commits into from
Dec 16, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
feat: ✨ convert schema property to snake case
converted wc and mobile properties to snake case.
DavideSegullo committed Dec 16, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 970859ab4b34e05765fdf96cda1a57f37a1e5507
14 changes: 8 additions & 6 deletions wallet.schema.json
Original file line number Diff line number Diff line change
@@ -160,23 +160,24 @@
}
}
}
}
},
"additionalProperties": false
},
"mobile": {
"type": "object",
"properties": {
"android": {
"type": "object",
"properties": {
"packageName": {
"package_name": {
"type": "string",
"description": "The package name for your Android standalone app. You make it up, but it needs to be unique on the Play Store. See this [StackOverflow question](https://stackoverflow.com/questions/6273892/android-package-name-convention)."
},
"schema": {
"type": "string",
"description": "Custom schema that provide a way to reference resources inside an app, documented [here](https://developer.android.com/training/app-links/deep-linking)."
},
"universalSchema": {
"universal_schema": {
"type": "string",
"description": "Universal schema for universal deeplink that provide a way to reference resources inside an app, documented [here](https://developer.android.com/training/app-links)."
}
@@ -185,21 +186,22 @@
"ios": {
"type": "object",
"properties": {
"bundleIdentifier": {
"bundle_identifier": {
"type": "string",
"description": "The bundle identifier for your iOS standalone app. You make it up, but it needs to be unique on the App Store. See this [StackOverflow question](https://stackoverflow.com/questions/11347470/what-does-bundle-identifier-mean-in-an-ios-project)."
},
"schema": {
"type": "string",
"description": "Custom URL schemes provide a way to reference resources inside an app, documented [here](https://developer.apple.com/documentation/xcode/defining-a-custom-url-scheme-for-your-app)."
},
"universalSchema": {
"universal_schema": {
"type": "string",
"description": "Universal schema for universal deeplink that provide a way to reference resources inside an app, documented [here](https://developer.apple.com/ios/universal-links/)."
}
}
}
}
},
"additionalProperties": false
}
},
"additionalProperties": false,