{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ErrorTrackingExternalReferenceResult", "title": "ErrorTrackingExternalReferenceResult", "type": "object", "properties": { "id": { "type": "string", "format": "uuid", "readOnly": true }, "integration": { "allOf": [ { "$ref": "#/components/schemas/ErrorTrackingExternalReferenceIntegrationResult" } ], "readOnly": true }, "integration_id": { "type": "integer", "writeOnly": true }, "config": { "writeOnly": true }, "issue": { "type": "string", "format": "uuid", "writeOnly": true }, "external_url": { "type": "string", "readOnly": true } }, "required": [ "config", "external_url", "id", "integration", "integration_id", "issue" ] }