@@ -69,76 +69,75 @@ sfdx plugins
6969## Commands
7070
7171<!-- commands -->
72- * [ ` sfdx force:schema:sobject:describe -s <string> [-t] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] ` ] ( #sfdx-forceschemasobjectdescribe--s-string--t--u-string---apiversion-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal )
73- * [ ` sfdx force:schema:sobject:list [-c <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] ` ] ( #sfdx-forceschemasobjectlist--c-string--u-string---apiversion-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal )
72+
73+ - [ ` sfdx force:schema:sobject:describe -s <string> [-t] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] ` ] ( #sfdx-forceschemasobjectdescribe--s-string--t--u-string---apiversion-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal )
74+ - [ ` sfdx force:schema:sobject:list [-c <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] ` ] ( #sfdx-forceschemasobjectlist--c-string--u-string---apiversion-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal )
7475
7576## ` sfdx force:schema:sobject:describe -s <string> [-t] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] `
7677
7778displays the metadata for a standard or custom object
7879
7980```
80- displays the metadata for a standard or custom object
81-
8281USAGE
83- $ sfdx force:schema:sobject:describe -s <string> [-t] [-u <string>] [--apiversion <string>] [--json] [--loglevel
84- trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
82+ $ sfdx force:schema:sobject:describe -s <string> [-t] [-u <string>] [--apiversion <string>] [--json] [--loglevel
83+ trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
8584
86- OPTIONS
87- -s, --sobjecttype=sobjecttype (required) the API name of the
85+ FLAGS
86+ -s, --sobjecttype=<value> (required) the API name of the
8887 object to describe
89-
9088 -t, --usetoolingapi execute with Tooling API
91-
92- -u, --targetusername=targetusername username or alias for the target
89+ -u, --targetusername=<value> username or alias for the target
9390 org; overrides default target org
94-
95- --apiversion=apiversion override the api version used for
91+ --apiversion=<value> override the api version used for
9692 api requests made by this command
97-
9893 --json format output as json
99-
10094 --loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL) [default: warn] logging level for
10195 this command invocation
10296
97+ DESCRIPTION
98+ displays the metadata for a standard or custom object
99+
103100EXAMPLES
104- sfdx force:schema:sobject:describe -s Account
105- sfdx force:schema:sobject:describe -s MyObject__c
106- sfdx force:schema:sobject:describe -s ApexClass -t
101+ $ sfdx force:schema:sobject:describe -s Account
102+
103+ $ sfdx force:schema:sobject:describe -s MyObject__c
104+
105+ $ sfdx force:schema:sobject:describe -s ApexClass -t
107106```
108107
109- _ See code: [ src/commands/force/schema/sobject/describe.ts] ( https://github.com/salesforcecli/plugin-schema/blob/v1 .0.10 /src/commands/force/schema/sobject/describe.ts ) _
108+ _ See code: [ src/commands/force/schema/sobject/describe.ts] ( https://github.com/salesforcecli/plugin-schema/blob/v2 .0.0 /src/commands/force/schema/sobject/describe.ts ) _
110109
111110## ` sfdx force:schema:sobject:list [-c <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] `
112111
113112list all objects of a specified category
114113
115114```
116- list all objects of a specified category
117-
118115USAGE
119- $ sfdx force:schema:sobject:list [-c <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel
120- trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
116+ $ sfdx force:schema:sobject:list [-c <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel
117+ trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
121118
122- OPTIONS
123- -c, --sobjecttypecategory=sobjecttypecategory [default: ALL] the type of objects
119+ FLAGS
120+ -c, --sobjecttypecategory=<value> [default: ALL] the type of objects
124121 to list (all|custom|standard)
125-
126- -u, --targetusername=targetusername username or alias for the target
122+ -u, --targetusername=<value> username or alias for the target
127123 org; overrides default target org
128-
129- --apiversion=apiversion override the api version used for
124+ --apiversion=<value> override the api version used for
130125 api requests made by this command
131-
132126 --json format output as json
133-
134127 --loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL) [default: warn] logging level for
135128 this command invocation
136129
130+ DESCRIPTION
131+ list all objects of a specified category
132+
137133EXAMPLES
138- sfdx force:schema:sobject:list -c all
139- sfdx force:schema:sobject:list -c custom
140- sfdx force:schema:sobject:list -c standard
134+ $ sfdx force:schema:sobject:list -c all
135+
136+ $ sfdx force:schema:sobject:list -c custom
137+
138+ $ sfdx force:schema:sobject:list -c standard
141139```
142140
143- _ See code: [ src/commands/force/schema/sobject/list.ts] ( https://github.com/salesforcecli/plugin-schema/blob/v1.0.10/src/commands/force/schema/sobject/list.ts ) _
141+ _ See code: [ src/commands/force/schema/sobject/list.ts] ( https://github.com/salesforcecli/plugin-schema/blob/v2.0.0/src/commands/force/schema/sobject/list.ts ) _
142+
144143<!-- commandsstop -->
0 commit comments