Skip to content

Commit

Permalink
Add IconsDataSchema (#1634)
Browse files Browse the repository at this point in the history
<!--- Provide a general summary of your changes in the Title above -->

## Description
Same as #1630 

## Motivation and Context
<!--- Why is this change required? What problem does it solve? -->
<!--- If it fixes an open issue, please link to the issue here. -->

## How Has This Been Tested?
Manual

## Screenshots (if appropriate):

## Types of changes
<!--- What types of changes does your code introduce? Put an `x` in all
the boxes that apply: -->
- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing
functionality to change)
  • Loading branch information
HO-COOH authored Dec 6, 2024
1 parent 2a820e3 commit 82f7b64
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions WinUIGallery/DataModel/IconsDataSchema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"Code": {
"type": "string",
"description": "Glyph code",
"uniqueItems": true
},
"Name": {
"type": "string",
"description": "Name of the glyph",
"uniqueItems": true
},
"Tags": {
"type": "array",
"description": "Array of tags related to this glyph",
"uniqueItems": true,
"items": {
"type": "string"
}
}
},
"required": ["Code", "Name"]
}
}

0 comments on commit 82f7b64

Please sign in to comment.