Skip to content

Push Updated Version v1.1.0 #28

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Sep 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions cabs/schema_b75e69d4-47bc-4ac6-b7d7-df9a36e08bbe_HelpInfo.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<HelpInfo xmlns="http://schemas.microsoft.com/powershell/help/2010/05">
<HelpContentURI>https://raw.githubusercontent.com/SchemaModule/PowerShell/master/cabs/</HelpContentURI>
<SupportedUICultures>
<UICulture>
<UICultureName>en-US</UICultureName>
<UICultureVersion>1.1.0</UICultureVersion>
</UICulture>
</SupportedUICultures>
</HelpInfo>
Binary file not shown.
Binary file not shown.
25 changes: 25 additions & 0 deletions docs/schema.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
Module Name: schema
Module Guid: b75e69d4-47bc-4ac6-b7d7-df9a36e08bbe
Download Help Link: https://raw.githubusercontent.com/SchemaModule/PowerShell/master/cabs/
Help Version: 1.1.0
Locale: en-US
---

# schema Module
## Description
A PowerShell Module for working with JSON Schema documents

## schema Cmdlets
### [Get-SchemaArray](Get-SchemaArray.md)
This function returns the object from an array within the Json Schema.

### [Get-SchemaDocument](Get-SchemaDocument.md)
This function will return a PowerShell object of the input Schema.

### [Get-SchemaObject](Get-SchemaObject.md)
This function returns an object from the Json Schema.

### [Get-SchemaProperty](Get-SchemaProperty.md)
This function returns one ore more properties from a Json Schema object.

4 changes: 2 additions & 2 deletions schema/schema.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'schema.psm1'

# Version number of this module.
ModuleVersion = '1.0.0'
ModuleVersion = '1.1.0'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -117,7 +117,7 @@ PrivateData = @{
} # End of PrivateData hashtable

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

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