Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JSON-Schema edits. See issue 1734 #1735

Merged
merged 8 commits into from
Jan 25, 2022
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion ontology/uberon.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ description: An integrated cross-species anatomy ontology covering animals and b
homepage: http://uberon.org
page: http://en.wikipedia.org/wiki/Uberon
twitter: uberanat
google_plus: "+UberonOrg"
slack: https://obo-communitygroup.slack.com/archives/C01CR698CF2
wikidata_template: https://en.wikipedia.org/wiki/Template:Uberon
mailing_list: https://lists.sourceforge.net/lists/listinfo/obo-anatomy
Expand Down
27 changes: 8 additions & 19 deletions util/schema/registry_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
"items":
{
"type": "object",
"title": "Browser",
"additionalProperties": false,
"properties": {
"label": { "type": "string" },
Expand Down Expand Up @@ -86,9 +87,6 @@
},
"required": [ "email","label" ]
},
"created_with": {
"suggest": false
},
"createdWith": {
"suggest": false
},
Expand All @@ -114,15 +112,9 @@
"description": "'domain' is a recommended field. The value is the scientific topic area addressed by the ontology.",
"type": "string"
},
"do_wiki": {
"suggest": false
},
"DO wiki": {
"suggest": false
},
"example_class": {
"suggest": false
},
"exampleClass": {
"suggest": false
},
Expand All @@ -132,9 +124,6 @@
"funded_by": {
"suggest": false
},
"google_plus": {
"suggest": false
},
"homepage": {
"level": "warning",
"description": "'homepage' is a recommended property. The value is the full URL to the homepage.",
Expand Down Expand Up @@ -322,6 +311,7 @@
"minItems": 1,
"items": {
"type": "object",
"title": "Product",
"properties": {
"id": {
"type": "string",
Expand All @@ -339,6 +329,7 @@
"type": "array",
"items": {
"type": "object",
"title": "Publication",
"properties": {
"id": { "type": "string" },
"title": { "type": "string" }
Expand Down Expand Up @@ -382,9 +373,6 @@
"label": {"type": "string"}
}
},
"termgenie": {
"suggest": false
},
"title": {
"level": "error",
"description": "'title' is a required field. The value is the full name of the ontology project.",
Expand All @@ -396,9 +384,6 @@
"type": "string",
"format": "uri"
},
"ty": {
"suggest": false
},
"type": {
"suggest": false
},
Expand All @@ -411,7 +396,9 @@
"description": "Information on usage of particular ontology.",
"type": "array",
"items": {
"type": "object",
"type": "object",
"title": "Usage",

"additionalProperties" : false,
"properties": {
"user": {
Expand All @@ -430,6 +417,7 @@
"type": "array",
"items": {
"type": "object",
"title": "Example",
"additionalProperties" : false,
"properties": {
"url": {
Expand All @@ -446,6 +434,7 @@
"type": "array",
"items": {
"type": "object",
"title": "Publication",
"additionalProperties" : false,
"properties": {
"id": {
Expand Down