{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "ClassificationCategory", "type": "object", "properties": { "confident": { "type": "boolean", "description": "Are we confident enough?" }, "score": { "$ref": "#/definitions/GenericConfidence" }, "label": { "type": "string", "description": "Detected label" }, "id": { "type": "number", "format": "int" }, "links": { "type": "array", "items": { "type": "object", "description": "Category link", "properties": { "rel": { "type": "string", "description": "Relation, see https://html.spec.whatwg.org/multipage/semantics.html#attr-link-rel" }, "link": { "type": "string", "description": "Link URL" } } } } } }