Created
August 7, 2020 16:19
-
-
Save rhelmer/bd931f23ced03ebe4c9eafb2e3ff408b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"type": "object", | |
"properties": { | |
"addon_id": { | |
"type": "string" | |
}, | |
"icons": { | |
"type": "object", | |
"properties": { | |
"32": { | |
"type": "string" | |
}, | |
"64": { | |
"type": "string" | |
}, | |
"128": { | |
"type": "string" | |
} | |
} | |
}, | |
"title": { | |
"type": "string", | |
"maxLength": 75 | |
}, | |
"version": { | |
"type": "string" | |
}, | |
"sourceURI": { | |
"type": "object", | |
"properties": { | |
"spec": { | |
"type": "string" | |
} | |
} | |
}, | |
"description": { | |
"type": "string" | |
}, | |
"privacyPolicy": { | |
"type": "object", | |
"properties": { | |
"spec": { | |
"type": "string" | |
} | |
} | |
}, | |
"studyType": { | |
"type": "string" | |
}, | |
"moreInfo": { | |
"type": "object", | |
"properties": { | |
"spec": { | |
"type": "string" | |
} | |
} | |
}, | |
"dataCollectionDetails": { | |
"type": "array", | |
"properties": { | |
"collectionDetail": { | |
"type": "string" | |
} | |
} | |
}, | |
"authors": { | |
"type": "object", | |
"properties": { | |
"name": { | |
"type": "string", | |
"maxLength": 75 | |
}, | |
"moreInfo": { | |
"type": "object", | |
"properties": { | |
"spec": { | |
"type": "string" | |
} | |
} | |
} | |
} | |
}, | |
"isDefault": { | |
"type": "boolean" | |
}, | |
"studyEnded": { | |
"type": "boolean" | |
} | |
}, | |
"required": [ | |
"addon_id", | |
"icons", | |
"version", | |
"sourceURI", | |
"description", | |
"privacyPolicy", | |
"studyType", | |
"moreInfo", | |
"dataCollectionDetails", | |
"authors", | |
"isDefault", | |
"studyEnded" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment