{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ErrorTrackingFingerprint", "title": "ErrorTrackingFingerprint", "type": "object", "properties": { "id": { "type": "string", "format": "uuid", "readOnly": true }, "fingerprint": { "type": "string", "readOnly": true }, "issue_id": { "type": "string", "format": "uuid", "readOnly": true }, "created_at": { "type": "string", "format": "date-time", "readOnly": true } }, "required": [ "created_at", "fingerprint", "id", "issue_id" ] }