{ "openapi": "3.0.1", "info": { "title": "test", "description": "test", "version": "v2" }, "paths": { "/test": { "get": { "summary": "test", "parameters": [], "responses": { "200": { "description": "success", "content": { "application/dicom+json": { "schema": { "type": "array", "items": { "type": "object", "additionalProperties": { "$ref": "#/components/schemas/DicomAttribute" } } }, "example": [ { "00080005": { "vr": "CS", "Value": [ "ISO_IR 100" ] }, "00080050": { "vr": "SH", "Value": [ "AccessionNumber" ] }, "00080061": { "vr": "CS", "Value": [ "CT" ] } } ] } } } } } } }, "components": { "schemas": { "DicomAttribute": { "type": "object", "properties": { "vr": { "type": "string", "nullable": true }, "Value": { "type": "array", "items": {}, "nullable": true } }, "additionalProperties": false } } } }