Skip to content

Instantly share code, notes, and snippets.

@tristancamejo
Created April 3, 2022 11:01
Show Gist options
  • Save tristancamejo/af843d10bcb8a02f79c7d5204f76cdd7 to your computer and use it in GitHub Desktop.
Save tristancamejo/af843d10bcb8a02f79c7d5204f76cdd7 to your computer and use it in GitHub Desktop.
{
"$schema": "http://json-schema.org/draft-06/schema#",
"$ref": "#/definitions/Welcome7",
"definitions": {
"Welcome7": {
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"license": {
"type": "string"
},
"genre": {
"type": "string"
},
"socials": {
"type": "array",
"items": {
"type": "string",
"format": "uri",
"qt-uri-protocols": [
"https"
]
}
},
"albums": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"albums",
"genre",
"license",
"name",
"socials"
],
"title": "Welcome7"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment