open-biohacking-data / schemas /source.schema.json
HolistixOpen's picture
Restore v1.4 repository folder structure
dee9530 verified
Raw
History Blame Contribute Delete
450 Bytes
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"title": "Holistix Source Record",
"required": [
"id",
"source_type",
"title",
"url_or_locator"
],
"properties": {
"id": {
"type": "string"
},
"source_type": {
"type": "string"
},
"title": {
"type": "string"
},
"url_or_locator": {
"type": "string"
}
},
"additionalProperties": true
}