{"id":32248103,"url":"https://github.com/eviratec/appbuilder3","last_synced_at":"2026-02-19T23:02:24.475Z","repository":{"id":58218202,"uuid":"94770757","full_name":"eviratec/appbuilder3","owner":"eviratec","description":"JSON-Schema oriented data collection, and management; module for Angular.js (directives, services, etc)","archived":false,"fork":false,"pushed_at":"2017-06-26T03:57:26.000Z","size":76,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"dev","last_synced_at":"2026-01-23T19:46:33.879Z","etag":null,"topics":["angular","json-schema-forms","json-schema-tables"],"latest_commit_sha":null,"homepage":"https://github.com/eviratec/appbuilder3/wiki","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"isc","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eviratec.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}},"created_at":"2017-06-19T11:43:33.000Z","updated_at":"2017-06-23T13:25:39.000Z","dependencies_parsed_at":"2022-08-31T04:52:46.180Z","dependency_job_id":null,"html_url":"https://github.com/eviratec/appbuilder3","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/eviratec/appbuilder3","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eviratec%2Fappbuilder3","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eviratec%2Fappbuilder3/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eviratec%2Fappbuilder3/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eviratec%2Fappbuilder3/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eviratec","download_url":"https://codeload.github.com/eviratec/appbuilder3/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eviratec%2Fappbuilder3/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29636040,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T22:32:43.237Z","status":"ssl_error","status_checked_at":"2026-02-19T22:32:38.330Z","response_time":117,"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":["angular","json-schema-forms","json-schema-tables"],"created_at":"2025-10-22T17:40:42.571Z","updated_at":"2026-02-19T23:02:24.468Z","avatar_url":"https://github.com/eviratec.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AppBuilder3\n\n[![Build Status](https://travis-ci.org/eviratec/appbuilder3.svg?branch=master)](https://travis-ci.org/eviratec/appbuilder3)\n\n- [AppBuilder3 Wiki](https://github.com/eviratec/appbuilder3/wiki)\n- [Try the demo on Codepen.io](https://codepen.io/eviratec-software/pen/NgpZbL)\n\n## Usage\n\n### JSON Schema Tables\n\nAppBuilder3 wiki: [Usage: JSON Schema Tables](https://github.com/eviratec/appbuilder3/wiki/Usage:-JSON-Schema-Tables)\n\n### JSON Schema Forms\n\nAppBuilder3 wiki: [Usage: JSON Schema Forms](https://github.com/eviratec/appbuilder3/wiki/Usage:-JSON-Schema-Forms)\n\n*Inspired by [schemaform](http://schemaform.io/)*\n\n#### Install it\n\nWith, [**Bower**](https://bower.io/):\n```shell\n$ bower install --save-dev appbuilder3\n```\n\n#### Include the JS\n\n```html\n\u003cscript type=\"application/javascript\"\n        src=\"bower_components/appbuilder3/appbuilder3.js\"\u003e\u003c/script\u003e\n```\n\n#### Let Angular.js know your app depends on it\n\n```javascript\nconst MyApp = angular.module(\"MyApp\", [\n  \"AppBuilder3\"\n]);\n```\n\n#### Use an inline JSON Schema\n\n```javascript\nMyApp.controller(\"FormContainerCtrl\", FormContainerCtrl);\n\nFormContainerCtrl.$inject = [\"JsonSchema\"];\nfunction FormContainerCtrl (  JsonSchema) {\n\n  const $f = this;\n\n  $f.schema = new JsonSchema({\n    \"$schema\": \"http://json-schema.org/draft-04/schema#\",\n    \"description\": \"schema for a person\",\n    \"type\": \"object\",\n    \"additionalProperties\": false,\n    \"required\": [ \"id\", \"full_name\", \"date_added\", \"is_online\" ],\n    \"properties\": {\n      \"id\": {\n        \"type\": \"string\",\n        \"description\": \"The Person's v4 UUID\",\n        \"format\": \"uuid\"\n      },\n      \"full_name\": {\n        \"type\": \"string\",\n        \"description\": \"E.g. 'Max Power'\",\n        \"maxLength\": 255\n      },\n      \"date_added\": {\n        \"type\": \"string\",\n        \"format\": \"date-time\"\n      },\n      \"is_online\": {\n        \"type\": \"boolean\",\n        \"value\": false\n      }\n    }\n  });\n\n  $f.form = [\n    \"*\",\n    {\n      type: \"submit\",\n      title: \"Save\"\n    }\n  ];\n\n  $f.model = {};\n\n}\n```\n\n*-or-* [Fetch a remote JSON Schema](https://github.com/eviratec/appbuilder3/wiki/Usage:-JSON-Schema-Forms#fetch-a-remote-json-schema)\n\n#### Render the form\n\n```html\n\u003csection ng-controller=\"FormContainerCtrl as $f\"\u003e\n  \u003cform id=\"UserSubmission\"\n    ab-schema=\"$f.schema\"\n    ab-form=\"$f.form\"\n    ab-model=\"$f.model\"\n    layout=\"column\"\u003e\n  \u003c/form\u003e\n\u003c/section\u003e\n```\n\n## License\n\nCopyright (c) 2017 Callan Peter Milne\n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feviratec%2Fappbuilder3","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feviratec%2Fappbuilder3","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feviratec%2Fappbuilder3/lists"}