Created
November 1, 2014 00:34
-
-
Save ottonomy/074f1db3379c5da56a99 to your computer and use it in GitHub Desktop.
Sample extension JSON-schema
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"id": "http://extension.org/schema/badgeListUrl", | |
"title": "BadgelistUrl Extension", | |
"description": "An extension that allows issuers to declare a list of badge classes that they offer", | |
"type": "object", | |
"properties": { | |
"listUrl": { "type": "string", "format": "uri" } | |
}, | |
"required": ["listUrl"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment