{"id":44468738,"url":"https://github.com/proxima-one/stream-schemas","last_synced_at":"2026-02-12T20:40:43.272Z","repository":{"id":38453795,"uuid":"457388686","full_name":"proxima-one/stream-schemas","owner":"proxima-one","description":"TS schemas reused across streaming applications","archived":false,"fork":false,"pushed_at":"2023-05-25T08:51:23.000Z","size":561,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-11-30T11:36:23.141Z","etag":null,"topics":["library"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/proxima-one.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-02-09T14:17:45.000Z","updated_at":"2023-03-17T14:09:03.000Z","dependencies_parsed_at":"2024-10-03T17:50:59.045Z","dependency_job_id":"72be2193-f24e-460e-ad92-005bd6a167c1","html_url":"https://github.com/proxima-one/stream-schemas","commit_stats":{"total_commits":112,"total_committers":11,"mean_commits":"10.181818181818182","dds":0.5714285714285714,"last_synced_commit":"20c961d9309832d5fb9dbf14834e745cab83c543"},"previous_names":[],"tags_count":113,"template":false,"template_full_name":null,"purl":"pkg:github/proxima-one/stream-schemas","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/proxima-one%2Fstream-schemas","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/proxima-one%2Fstream-schemas/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/proxima-one%2Fstream-schemas/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/proxima-one%2Fstream-schemas/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/proxima-one","download_url":"https://codeload.github.com/proxima-one/stream-schemas/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/proxima-one%2Fstream-schemas/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29380607,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T20:34:40.886Z","status":"ssl_error","status_checked_at":"2026-02-12T20:23:00.490Z","response_time":55,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["library"],"created_at":"2026-02-12T20:40:42.447Z","updated_at":"2026-02-12T20:40:43.267Z","avatar_url":"https://github.com/proxima-one.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"#  Stream Schema\n\nStream processes are defined as in the following schema.\n\n## Schema \n\n### Stream Process \n\n- id: unique stream identifier \n- name: descriptive stream name \n- version: string that describes current version of stream\n- input_streams: list of input stream ids \n- output_streams: list of output stream ids\n- container_id: identitifier for stream process \n- build: string location for build files\n\n\n```typescript\ninterface EventStreamProcess {\n  id: string;\n  name: string;\n  owner: string;\n  version: string;\n  input_streams: Array\u003cEventStreamProcess\u003e;\n  output_streams: Array\u003cEventStreamProcess\u003e;\n  container_id: string; \n  build: string;\n}\n```\n\n### Event Stream\n\n- id: unique stream identifier\n- process_id: unique identifier for process that creates the stream \n- name: descriptive stream name \n- version: string that describes current version of stream\n- serdes: serialization of the current stream\n- type: represents an enum for StreamType [SOURCE, STATELESS, STATEFUL, QUERY]\n\n```typescript\ninterface EventStream {\n  id: string;\n  process_id: string;\n  name: string;\n  type: StreamType;\n  schema_uri: string;\n}\n```\n\n### Schema URI \n\n```typescript\ninterface SchemaMeta {\n  type: string;\n  name: string;\n  uri: string;\n  version: string;\n}\n```\n\n### Event Stream Schema\n\n- name: descriptive stream name \n- version: string that describes current version of schema\n- serdes: serialization of the current stream\n\n```typescript\ninterface Schema\u003cT\u003e {\n  name: string;\n  version: string;\n  serdes: Serdes\u003cT\u003e;\n}\n```\n\n### Example \n\n```typescript\nexport type FungibleTokenDiscoveryStreamEvent =\n  | events.NewToken \u0026 {\n  ref?: BlockchainReference\n};\n\nexport const fungibleTokenDiscovery: EventStreamSchema\u003cFungibleTokenDiscoveryStreamEvent\u003e = {\n  name: \"fungible-token-discovery.streams.proxima.one\",\n  serdes: serializers.json\u003cFungibleTokenDiscoveryStreamEvent\u003e(),\n  version: \"0.1.0\",\n}\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproxima-one%2Fstream-schemas","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fproxima-one%2Fstream-schemas","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproxima-one%2Fstream-schemas/lists"}