Skip to content

Commit 35f2b0c

Browse files
Merge pull request #28 from SchemaModule/dev
Push Updated Version v1.1.0
2 parents f48766a + 0cd98a1 commit 35f2b0c

5 files changed

+37
-2
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<HelpInfo xmlns="http://schemas.microsoft.com/powershell/help/2010/05">
3+
<HelpContentURI>https://raw.githubusercontent.com/SchemaModule/PowerShell/master/cabs/</HelpContentURI>
4+
<SupportedUICultures>
5+
<UICulture>
6+
<UICultureName>en-US</UICultureName>
7+
<UICultureVersion>1.1.0</UICultureVersion>
8+
</UICulture>
9+
</SupportedUICultures>
10+
</HelpInfo>
Binary file not shown.
Binary file not shown.

docs/schema.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
Module Name: schema
3+
Module Guid: b75e69d4-47bc-4ac6-b7d7-df9a36e08bbe
4+
Download Help Link: https://raw.githubusercontent.com/SchemaModule/PowerShell/master/cabs/
5+
Help Version: 1.1.0
6+
Locale: en-US
7+
---
8+
9+
# schema Module
10+
## Description
11+
A PowerShell Module for working with JSON Schema documents
12+
13+
## schema Cmdlets
14+
### [Get-SchemaArray](Get-SchemaArray.md)
15+
This function returns the object from an array within the Json Schema.
16+
17+
### [Get-SchemaDocument](Get-SchemaDocument.md)
18+
This function will return a PowerShell object of the input Schema.
19+
20+
### [Get-SchemaObject](Get-SchemaObject.md)
21+
This function returns an object from the Json Schema.
22+
23+
### [Get-SchemaProperty](Get-SchemaProperty.md)
24+
This function returns one ore more properties from a Json Schema object.
25+

schema/schema.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'schema.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.0.0'
15+
ModuleVersion = '1.1.0'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -117,7 +117,7 @@ PrivateData = @{
117117
} # End of PrivateData hashtable
118118

119119
# HelpInfo URI of this module
120-
# HelpInfoURI = ''
120+
HelpInfoURI = 'https://raw.githubusercontent.com/SchemaModule/PowerShell/master/cabs/'
121121

122122
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
123123
DefaultCommandPrefix = 'Schema'

0 commit comments

Comments
 (0)