changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "assertion": {
+ "enum": [
+ "PRESENT",
+ "NEGATED"
+ ],
+ "type": "string"
+ },
+ "languages": {
+ "type": "string"
+ },
+ "meta": {},
+ "note": {
+ "type": "string"
+ },
+ "query": {
+ "type": "string"
+ },
+ "results": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "hpoId": {
+ "type": "string"
+ },
+ "match": {
+ "enum": [
+ "exact",
+ "approximate"
+ ],
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "namePt": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "similarity": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "via": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "hpoId",
+ "name",
+ "namePt",
+ "match",
+ "via",
+ "similarity"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "query",
+ "assertion",
+ "results"
+ ],
+ "type": "object"
+}