Gathering detailed insights and metrics for @salesforce/plugin-schema
Gathering detailed insights and metrics for @salesforce/plugin-schema
Gathering detailed insights and metrics for @salesforce/plugin-schema
Gathering detailed insights and metrics for @salesforce/plugin-schema
npm install @salesforce/plugin-schema
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
6 Stars
1,634 Commits
8 Watching
10 Branches
17 Contributors
Updated on 24 Nov 2024
TypeScript (86.18%)
JavaScript (11.78%)
Shell (1.32%)
Batchfile (0.72%)
Cumulative downloads
Total Downloads
Last day
-9.1%
29,899
Compared to previous day
Last week
-2.7%
170,966
Compared to previous week
Last month
3.7%
769,692
Compared to previous month
Last year
33.1%
7,871,430
Compared to previous year
Commands to interact with salesforce sobject schemas
This plugin is bundled with the Salesforce CLI. For more information on the CLI, read the getting started guide.
We always recommend using the latest version of these commands bundled with the CLI, however, you can install a specific version or tag if needed.
1sfdx plugins:install schema@x.y.z
Please report any issues at https://github.com/forcedotcom/cli/issues
External contributors will be required to sign a Contributor's License Agreement. You can do so by going to https://cla.salesforce.com/sign-cla.
To build the plugin locally, make sure to have yarn installed and run the following commands:
1# Clone the repository 2git clone git@github.com:salesforcecli/plugin-schema 3 4# Install the dependencies and compile 5yarn install 6yarn build
To use your plugin, run using the local ./bin/dev
or ./bin/dev.cmd
file.
1# Run using local run file. 2./bin/dev schema
There should be no differences when running via the Salesforce CLI or using the local run file. However, it can be useful to link the plugin to do some additional testing or run your commands from anywhere on your machine.
1# Link your plugin to the sfdx cli 2sfdx plugins:link . 3# To verify 4sfdx plugins
sf sobject describe
Display the metadata for a standard or custom object or a Tooling API object.
USAGE
$ sf sobject describe -o <value> -s <value> [--json] [--flags-dir <value>] [--api-version <value>] [-t]
FLAGS
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
configuration variable is already set.
-s, --sobject=<value> (required) API name of the object to describe.
-t, --use-tooling-api Use Tooling API to display metadata for Tooling API objects.
--api-version=<value> Override the api version used for api requests made by this command
GLOBAL FLAGS
--flags-dir=<value> Import flag values from a directory.
--json Format output as json.
DESCRIPTION
Display the metadata for a standard or custom object or a Tooling API object.
The metadata is displayed in JSON format. See this topic for a description of each property: https://developer.salesfo
rce.com/docs/atlas.en-us.api.meta/api/sforce_api_calls_describesobjects_describesobjectresult.htm.
This command displays metadata for Salesforce objects by default. Use the --use-tooling-api flag to view metadata for
a Tooling API object.
ALIASES
$ sf force schema sobject describe
EXAMPLES
Display the metadata of the "Account" standard object in your default org:
$ sf sobject describe --sobject Account
Display the metadata of the "MyObject__c" custom object in the org with alias "my-scratch-org":
$ sf sobject describe --sobject MyObject__c --target-org my-scratch-org
Display the metadata of the ApexCodeCoverage Tooling API object in your default org:
$ sf sobject describe --sobject ApexCodeCoverage --use-tooling-api
See code: src/commands/sobject/describe.ts
sf sobject list
List all Salesforce objects of a specified category.
USAGE
$ sf sobject list -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-s <value>]
FLAGS
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
configuration variable is already set.
-s, --sobject=<value> [default: ALL] Category of objects to list.
--api-version=<value> Override the api version used for api requests made by this command
GLOBAL FLAGS
--flags-dir=<value> Import flag values from a directory.
--json Format output as json.
DESCRIPTION
List all Salesforce objects of a specified category.
You can list the standard objects, custom objects, or all. The lists include only Salesforce objects, not Tooling API
objects.
ALIASES
$ sf force schema sobject list
EXAMPLES
List all objects in your default org:
$ sf sobject list --sobject all
List only custom objects in the org with alias "my-scratch-org":
$ sf sobject list --sobject custom --target-org my-scratch-org
See code: src/commands/sobject/list.ts
No vulnerabilities found.
Reason
30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
security policy file detected
Details
Reason
2 existing vulnerabilities detected
Details
Reason
Found 0/4 approved changesets -- score normalized to 0
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2024-11-18
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More