{"id":16764484,"url":"https://github.com/kamilturek/ddx","last_synced_at":"2026-05-08T09:32:32.031Z","repository":{"id":208086392,"uuid":"720796699","full_name":"kamilturek/ddx","owner":"kamilturek","description":"DynamoDB Key Schema Viewer","archived":false,"fork":false,"pushed_at":"2023-11-19T16:35:00.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-12T03:12:58.356Z","etag":null,"topics":["aws","aws-dynamodb","database","dynamodb","go","golang","nosql"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kamilturek.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-11-19T16:23:02.000Z","updated_at":"2023-11-19T16:42:00.000Z","dependencies_parsed_at":"2023-11-19T17:20:11.331Z","dependency_job_id":"efc69bd9-f279-4e40-aa62-09e07881dbf1","html_url":"https://github.com/kamilturek/ddx","commit_stats":null,"previous_names":["kamilturek/ddx"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/kamilturek/ddx","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kamilturek%2Fddx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kamilturek%2Fddx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kamilturek%2Fddx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kamilturek%2Fddx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kamilturek","download_url":"https://codeload.github.com/kamilturek/ddx/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kamilturek%2Fddx/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32774781,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"ssl_error","status_checked_at":"2026-05-08T08:22:45.650Z","response_time":54,"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":["aws","aws-dynamodb","database","dynamodb","go","golang","nosql"],"created_at":"2024-10-13T05:26:08.037Z","updated_at":"2026-05-08T09:32:32.011Z","avatar_url":"https://github.com/kamilturek.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ddx - DynamoDB Key Schema Viewer\n\n`ddx` is a CLI tool designed to help you quickly and conveniently view the key\nschemas of your DynamoDB tables and their indexes. With `ddx`, you can get a\nsummary of the partition keys and sort keys for your DynamoDB tables, with\nsupport for various output formats.\n\n## Features\n\n- View key schema of DynamoDB tables and indexes.\n- Output in human-readable text or machine-readable JSON format.\n- Option to view key schema of a specific table.\n- Ability to limit the number of tables listed.\n\n## Installation\n\n```sh\ngo install github.com/kamilturek/ddx\n```\n\n## Usage\n\n```sh\n$ ddx --help\nA tool for quickly viewing your DynamoDB table and index key schemas\n\nUsage:\n  ddx [flags]\n\nFlags:\n  -a, --all                 list all tables\n  -f, --format string       output format, available: \"text\", \"json\" (default \"text\")\n  -h, --help                help for ddx\n  -l, --limit int           maximum number of tables listed (default -1)\n  -t, --table-name string   table name whose key schema should be shown\n  -v, --version             version for ddx\n```\n\n## Examples\n\nView key schema for a specific table:\n\n```sh\n$ ddx --table-name Users\nTable Name:     Users\nTable Type:     BASE\nParition Key:   UserID\n```\n\nView key schemas for all tables in text format:\n\n```sh\n$ ddx --all\nTable Name:     Books\nTable Type:     BASE\nParition Key:   AuthorID\nSort Key:       BookID\n\nTable Name:     BooksLSI\nTable Type:     LSI\nPartition Key:  AuthorID\nSort Key:       PublisherID\n\nTable Name:     BooksGSI\nTable Type:     GSI\nPartition Key:  BookID\n\nTable Name:     Users\nTable Type:     BASE\nParition Key:   UserID\n```\n\nOutput key schemas in JSON format:\n\n```sh\n$ ddx --all --format json\n[\n    {\n       \"TableName\": \"Books\",\n       \"TableType\": \"BASE\",\n       \"PartitionKey\": \"AuthorID\",\n       \"SortKey\": \"BookID\"\n    },\n    {\n       \"TableName\": \"BooksLSI\",\n       \"TableType\": \"BASE\",\n       \"PartitionKey\": \"AuthorID\",\n       \"SortKey\": \"PublisherID\"\n    },\n    {\n       \"TableName\": \"BooksGSI\",\n       \"TableType\": \"BASE\",\n       \"PartitionKey\": \"BookID\"\n    },\n    {\n       \"TableName\": \"Users\",\n       \"TableType\": \"BASE\",\n       \"PartitionKey\": \"UserID\"\n    }\n]\n```\n\n## License\n\n`ddx` is open-sourced software licensed under the [MIT license](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkamilturek%2Fddx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkamilturek%2Fddx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkamilturek%2Fddx/lists"}