{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ErrorTrackingRelease", "title": "ErrorTrackingRelease", "type": "object", "properties": { "id": { "type": "string", "format": "uuid", "readOnly": true }, "hash_id": { "type": "string" }, "team_id": { "type": "integer", "readOnly": true }, "created_at": { "type": "string", "format": "date-time", "readOnly": true }, "metadata": { "nullable": true }, "version": { "type": "string" }, "project": { "type": "string" } }, "required": [ "created_at", "hash_id", "id", "project", "team_id", "version" ] }