{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ExternalIssue", "title": "ExternalIssue", "type": "object", "properties": { "id": { "type": "string" }, "issueId": { "type": "integer" }, "serviceType": { "type": "string" }, "displayName": { "type": "string" }, "webUrl": { "type": "string", "format": "uri" } }, "required": [ "id", "issueId", "webUrl" ] }