Showing:

Annotations
Diagram
Constraints
Pattern Properties
Used By
Source
Property schema packageAliases
Annotations
Title  Aliases for packaging ids

Description  The Salesforce CLI updates this file with the aliases when you create a package or package version. You can also manually update this section for existing packages or package versions. You can use the alias instead of the cryptic package ID when running CLI force:package commands.
Diagram
#/properties/packageAliases/patternProperties/%5E%5B%20-~%5D+$ diagram
Type object
Pattern Properties
Name
^[ -~]+$
Used by
Schema
#/schema
Source

 "packageAliases": {
  "type": "object",
  "title": "Aliases for packaging ids",
  "description": "The Salesforce CLI updates this file with the aliases when you create a package or package version. You can also manually update this section for existing packages or package versions. You can use the alias instead of the cryptic package ID when running CLI force:package commands.",
  "patternProperties": {
    "^[ -~]+$": {
      "type": "string",
      "pattern": "^(0Ho|033|05i|04t)([a-zA-Z0-9]{15}|[a-zA-Z0-9]{12})$"
    }
  }
}


Property schema ^[ -~0]+$
Diagram
diagram
Type string
Constraints
Pattern : ^(0Ho|033|05i|04t)([a-zA-Z0-9]{15}|[a-zA-Z0-9]{12})$

Used by
Source

 "^[ -~0]+$": {
  "type": "string",
  "pattern": "^(0Ho|033|05i|04t)([a-zA-Z0-9]{15}|[a-zA-Z0-9]{12})$"
}