Skip to main content

SourceSubtype

Properties

NameTypeDescriptionNotes
IdStringUnique identifier for the subtype.[optional]
SourceIdStringThe ID of the source.[optional] [readonly]
TechnicalNameStringTechnical name of the subtype.[required]
DisplayNameStringDisplay name of the subtype.[required]
DescriptionStringDescription of the subtype.[required]
CreatedSystem.DateTimeCreation timestamp.[optional]
ModifiedSystem.DateTimeLast modified timestamp.[optional]

Examples

  • Prepare the resource
$SourceSubtype = Initialize-V2025SourceSubtype  -Id 43bdd144-4b17-4fce-a744-17c7fd3e717b `
-SourceId null `
-TechnicalName foo `
-DisplayName Mr Foo `
-Description fighters `
-Created 2025-07-28T16:13:42.801300Z `
-Modified 2025-07-28T16:13:42.750850Z
  • Convert the resource to JSON
$SourceSubtype | ConvertTo-JSON

[Back to top]