{"id":20994956,"url":"https://github.com/elliotgao2/fineapi-specification","last_synced_at":"2026-03-17T21:02:02.199Z","repository":{"id":129762111,"uuid":"156699334","full_name":"elliotgao2/FineAPI-Specification","owner":"elliotgao2","description":"FineAPI Specification.","archived":false,"fork":false,"pushed_at":"2018-11-09T09:05:09.000Z","size":10,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-31T11:54:53.856Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"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/elliotgao2.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":"2018-11-08T11:52:04.000Z","updated_at":"2023-09-08T17:47:00.000Z","dependencies_parsed_at":null,"dependency_job_id":"f28f8e0c-0e0c-40ee-a674-8d56d0cab641","html_url":"https://github.com/elliotgao2/FineAPI-Specification","commit_stats":null,"previous_names":["elliotgao2/fineapi-specification"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/elliotgao2/FineAPI-Specification","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elliotgao2%2FFineAPI-Specification","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elliotgao2%2FFineAPI-Specification/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elliotgao2%2FFineAPI-Specification/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elliotgao2%2FFineAPI-Specification/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/elliotgao2","download_url":"https://codeload.github.com/elliotgao2/FineAPI-Specification/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elliotgao2%2FFineAPI-Specification/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30631423,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-17T17:32:55.572Z","status":"ssl_error","status_checked_at":"2026-03-17T17:32:38.732Z","response_time":56,"last_error":"SSL_read: 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":[],"created_at":"2024-11-19T07:20:42.146Z","updated_at":"2026-03-17T21:02:02.182Z","avatar_url":"https://github.com/elliotgao2.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# FineAPI-Specification\n\n## Service Define\n\n```json\n{\n    \"title\": \"Blog Service\",\n    \"description\": \"Blog Service\",\n    \"setting\": {\n        \"root\": \"/api\",\n        \"database\": {},\n        \"cache\": {},\n        \"upload\": {},\n        \"permission\": [\n            \"IsOwnerOrReadOnly\"\n        ],\n        \"authentication\": {\n            \"resource\": \"User\",\n            \"type\": \"jwt\",\n            \"username\": \"username\",\n            \"password\": \"password\"\n        }\n    },\n    \"resources\": {\n        \"users\": {\n            \"title\": \"User\",\n            \"description\": \"User\",\n            \"search_fields\": [\n                \"username\"\n            ],\n            \"filter_fields\": [\n                \"username\"\n            ],\n            \"fields\": {\n                \"username\": {\n                    \"type\": \"String\"\n                },\n                \"password\": {\n                    \"type\": \"String\"\n                },\n                \"role\": {\n                    \"type\": \"String\"\n                }\n            }\n        },\n        \"articles\": {\n            \"title\": \"Article\",\n            \"description\": \"Article\",\n            \"search_fields\": [\n                \"username\"\n            ],\n            \"filter_fields\": [\n                \"username\"\n            ],\n            \"fields\": {\n                \"title\": {\n                    \"type\": \"String\"\n                },\n                \"content\": {\n                    \"type\": \"String\"\n                },\n                \"author\": {\n                    \"type\": \"User\",\n                    \"relation\": \"ManyToOne\"\n                }\n            }\n        }\n    }\n}\n```\n\n## Data Example\n\n`GET https://127.0.0.1/works`\n\n```json\n{\n    \"meta\": {\n        \"type\": \"resources\",\n        \"page_size\": 25,\n        \"page\": 1,\n        \"total\": 2,\n        \"links\": {\n            \"parent\": {\n                \"title\": \"home\",\n                \"href\": \"/\"\n            },\n            \"self\": {\n                \"title\": \"works\",\n                \"href\": \"/works\"\n            },\n            \"next\": {\n                \"title\": \"next page\",\n                \"href\": \"/works?page=2\"\n            },\n            \"last\": {\n                \"title\": \"last page\",\n                \"href\": \"/works?page=2\"\n            }\n        }\n    },\n    \"data\": [\n        {\n            \"meta\": {\n                \"type\": \"resource\",\n                \"links\": {\n                    \"self\": {\n                        \"title\": \"Work\",\n                        \"href\": \"/works/5bd899a9435e700004888e16\"\n                    }\n                }\n            },\n            \"data\": {\n                \"_id\": \"5bd899a9435e700004888e16\",\n                \"title\": \"Book Title #25\",\n                \"description\": \"Description #25\",\n                \"owner\": \"5bd899a8435e700004888df9\",\n                \"_etag\": \"401943a986ab49a2e630a977579fd6d80b51f081\",\n                \"_updated\": 1234567890,\n                \"_created\": 1234567890\n            }\n        }\n    ]\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felliotgao2%2Ffineapi-specification","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felliotgao2%2Ffineapi-specification","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felliotgao2%2Ffineapi-specification/lists"}