{"id":15994303,"url":"https://github.com/pixelhandler/clean-or-dirty","last_synced_at":"2025-04-05T00:15:49.459Z","repository":{"id":6195160,"uuid":"7425756","full_name":"pixelhandler/clean-or-dirty","owner":"pixelhandler","description":"mobile web app, keep track of dishwasher status using location","archived":false,"fork":false,"pushed_at":"2013-01-20T11:16:18.000Z","size":512,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-10T08:31:22.830Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/pixelhandler.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}},"created_at":"2013-01-03T16:26:22.000Z","updated_at":"2013-10-10T05:35:45.000Z","dependencies_parsed_at":"2022-08-26T02:13:56.309Z","dependency_job_id":null,"html_url":"https://github.com/pixelhandler/clean-or-dirty","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pixelhandler%2Fclean-or-dirty","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pixelhandler%2Fclean-or-dirty/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pixelhandler%2Fclean-or-dirty/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pixelhandler%2Fclean-or-dirty/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pixelhandler","download_url":"https://codeload.github.com/pixelhandler/clean-or-dirty/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247266570,"owners_count":20910837,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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-10-08T07:08:19.167Z","updated_at":"2025-04-05T00:15:49.435Z","avatar_url":"https://github.com/pixelhandler.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# clean-or-dirty.com\n\nMobile web app, keep track of dishwasher status using location.\n\n## Directories\n\n* `app` source files\n* `dist` build for production\n* `api` deployd source\n* `test` unit tests\n\n## API\n\n### Appliances Collection\n\n#### [GET] \n\n##### Existing location\n\n**Request**\n\n    /appliances?{\"ref\": \"9e30ef6c90ffc7c5e650e63eb078174b\"}\n\n**Response**\n\n\t[\n\t    {\n\t        \"created\": \"Sun Jan 06 2013 08:40:08 GMT+0000 (UTC)\", \n\t        \"id\": \"ffbf4189d3ba6bee\", \n\t        \"name\": \"1431\", \n\t        \"ref\": \"9e30ef6c90ffc7c5e650e63eb078174b\", \n\t        \"state\": \"Dirty\", \n\t        \"updated\": \"Sun Jan 06 2013 08:40:49 GMT+0000 (UTC)\"\n\t    }\n\t]\n\n##### New location\n\n**Request**\n\n    /appliances?{\"ref\": \"9e30ef6c90ffc7c5e650e63eb078174b\"}\n\n**Response**\n\n\t[]\n\n#### [POST] \n\n##### New location\n\n**Request**\n\n    /appliances\n\nBody\n\n\t{\"ref\":\"9e30ef6c90ffc7c5e650e63eb078174b\",\"state\":\"Clean\"}\n\n**Response**\n\n\t{\n\t    \"created\": \"Sat Jan 12 2013 21:24:50 GMT+0000 (UTC)\", \n\t    \"id\": \"2c3c2a82207b984e\", \n\t    \"ref\": \"9e30ef6c90ffc7c5e650e63eb078174b\", \n\t    \"state\": \"Clean\", \n\t    \"updated\": \"Sat Jan 12 2013 21:24:50 GMT+0000 (UTC)\"\n\t}\n\n\n#### [PUT] \n\n##### Existing location\n\nUpdate as *Clean* appliance.\n\n**Request**\n\n    /appliances/ffbf4189d3ba6bee\n\nBody\n\n\t{\n\t    \"created\": \"Sun Jan 06 2013 08:40:08 GMT+0000 (UTC)\", \n\t    \"id\": \"ffbf4189d3ba6bee\", \n\t    \"name\": \"1431\", \n\t    \"ref\": \"9e30ef6c90ffc7c5e650e63eb078174b\", \n\t    \"state\": \"Clean\", \n\t    \"updated\": \"Sun Jan 06 2013 08:40:49 GMT+0000 (UTC)\"\n\t}\n\n**Response**\n\n\t{\n\t    \"id\": \"ffbf4189d3ba6bee\", \n\t    \"name\": \"1431\", \n\t    \"ref\": \"9e30ef6c90ffc7c5e650e63eb078174b\", \n\t    \"state\": \"Clean\", \n\t    \"updated\": \"Sat Jan 12 2013 21:19:33 GMT+0000 (UTC)\"\n\t}\n\nUpdate as *Dirty* appliance.\n\n**Request**\n\n\t/appliances/2c3c2a82207b984e\n\nBody\n\n\t{\n\t    \"created\": \"Sat Jan 12 2013 21:24:50 GMT+0000 (UTC)\", \n\t    \"id\": \"2c3c2a82207b984e\", \n\t    \"name\": \"1431\", \n\t    \"ref\": \"9e30ef6c90ffc7c5e650e63eb078174b\", \n\t    \"state\": \"Dirty\", \n\t    \"updated\": \"Sat Jan 12 2013 21:24:50 GMT+0000 (UTC)\"\n\t}\n\n**Response**\n\n\t{\n\t    \"id\": \"2c3c2a82207b984e\", \n\t    \"name\": \"1431\", \n\t    \"ref\": \"9e30ef6c90ffc7c5e650e63eb078174b\", \n\t    \"state\": \"Dirty\", \n\t    \"updated\": \"Sat Jan 12 2013 21:29:51 GMT+0000 (UTC)\"\n\t}\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpixelhandler%2Fclean-or-dirty","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpixelhandler%2Fclean-or-dirty","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpixelhandler%2Fclean-or-dirty/lists"}