{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/enhancement", "title": "enhancement", "type": "object", "properties": { "grounding": { "type": "object", "description": "The grounding enhancement that returns the bounding box of the objects detected in the image.", "properties": { "lines": { "type": "array", "items": { "$ref": "#/components/schemas/line" } } }, "required": [ "lines" ] } } }