PowerShellTips.json

[
  {
    "Id": "AShortEasyToRememberIdWithNoSpaces",
    "CreatedDate": "2023-07-15T00:00:00",
    "Title": "A brief title for the tip",
    "TipText": "A short description of the tip.\n\nThis can be multiple lines.",
    "Example": "Example code to demonstrate the tip.",
    "Urls": [
      "https://OneOrMoreUrls",
      "https://ToLearnMoreAboutTheTip"
    ],
    "MinPowerShellVersion": "0.0",
    "Tags": []
  },
  {
    "Id": "PowerShellIsOpenSource",
    "CreatedDate": "2023-07-16T00:00:00",
    "Title": "PowerShell is open source",
    "TipText": "Did you know that PowerShell is open source? You can contribute to the project on GitHub.",
    "Example": "Example code to demonstrate the tip.",
    "Urls": [
      "https://github.com/PowerShell/PowerShell"
    ],
    "MinPowerShellVersion": "0.0",
    "Tags": []
  },
  {
    "Id": "StrictMode",
    "CreatedDate": "2023-07-17T00:00:00",
    "Title": "Set Strict Mode on your scripts",
    "TipText": "Enforce coding rules and raise errors for common coding mistakes by declaring strict mode at the top of your scripts.",
    "Example": "Set-StrictMode -Version Latest",
    "Urls": [
      "https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/set-strictmode"
    ],
    "MinPowerShellVersion": "0.0",
    "Tags": [
      5
    ]
  }
]