File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ function Get-Object {
51
51
)
52
52
53
53
process {
54
- Write-Verbose $SchemaDocument ;
54
+ Write-Verbose ( $SchemaDocument | Out-String ) ;
55
55
$Properties = $SchemaDocument.properties | Get-Member - MemberType NoteProperty | Select-Object - ExpandProperty Name;
56
56
Write-Verbose " Setting up output object" ;
57
57
$Members = @ {};
@@ -99,7 +99,7 @@ function Get-Array {
99
99
)
100
100
101
101
process {
102
- Write-Verbose $SchemaDocument ;
102
+ Write-Verbose ( $SchemaDocument | Out-String ) ;
103
103
$Properties = $SchemaDocument.items.anyOf.properties | Get-Member - MemberType NoteProperty | Select-Object - ExpandProperty Name;
104
104
Write-Verbose " Setting up output object" ;
105
105
$Members = @ {};
@@ -148,7 +148,7 @@ function Get-Property {
148
148
)
149
149
150
150
process {
151
- Write-Verbose $SchemaDocument ;
151
+ Write-Verbose ( $SchemaDocument | Out-String ) ;
152
152
Write-Verbose $Name ;
153
153
if ($Name ) {
154
154
Write-Verbose " Return specific Property" ;
You can’t perform that action at this time.
0 commit comments