{"id":18780680,"url":"https://github.com/simplicitesoftware/module-projects","last_synced_at":"2025-12-19T01:30:15.713Z","repository":{"id":80897202,"uuid":"276379655","full_name":"simplicitesoftware/module-projects","owner":"simplicitesoftware","description":"IT Project Ticketing System","archived":false,"fork":false,"pushed_at":"2022-12-22T16:18:33.000Z","size":457,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-12-29T10:45:01.382Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","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/simplicitesoftware.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":"2020-07-01T13:04:29.000Z","updated_at":"2022-12-22T14:49:41.000Z","dependencies_parsed_at":null,"dependency_job_id":"fdfc6632-aafb-4e14-9e6d-5d438a469060","html_url":"https://github.com/simplicitesoftware/module-projects","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/simplicitesoftware%2Fmodule-projects","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplicitesoftware%2Fmodule-projects/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplicitesoftware%2Fmodule-projects/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplicitesoftware%2Fmodule-projects/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/simplicitesoftware","download_url":"https://codeload.github.com/simplicitesoftware/module-projects/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239697423,"owners_count":19682415,"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-11-07T20:27:37.683Z","updated_at":"2025-12-19T01:30:13.622Z","avatar_url":"https://github.com/simplicitesoftware.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!--\n ___ _            _ _    _ _    __\n/ __(_)_ __  _ __| (_)__(_) |_ /_/\n\\__ \\ | '  \\| '_ \\ | / _| |  _/ -_)\n|___/_|_|_|_| .__/_|_\\__|_|\\__\\___|\n            |_| \n--\u003e\n![](https://docs.simplicite.io//logos/logo250.png)\n* * *\n\n`Projects` module definition\n============================\n\nSoftware project management\n\n`PrjItem` business object definition\n------------------------------------\n\nWork Item\n\n### Fields\n\n| Name                                                         | Type                                     | Required | Updatable | Personal | Description                                                                      |\n|--------------------------------------------------------------|------------------------------------------|----------|-----------|----------|----------------------------------------------------------------------------------|\n| `prjItmVrsId` link to **`PrjVersion`**                       | id                                       | yes      | yes       |          | -                                                                                |\n| _Ref. `prjItmVrsId.prjVrsPrjId`_                             | _id_                                     |          |           |          | -                                                                                |\n| _Ref. `prjItmVrsId.prjVrsVersion`_                           | _char(10)_                               |          |           |          | -                                                                                |\n| _Ref. `prjVrsPrjId.prjPrjName`_                              | _char(100)_                              |          |           |          | -                                                                                |\n| _Ref. `prjItmVrsId.prjVrsDueDate`_                           | _date_                                   |          |           |          | -                                                                                |\n| `prjItmUsrId` link to **`PrjUser`**                          | id                                       | yes      | yes       |          | -                                                                                |\n| _Ref. `prjItmUsrId.usr_login`_                               | _regexp(100)_                            |          |           | yes      | _Login_                                                                          |\n| `prjItmStatus`                                               | enum(10) using `PRJITMSTATUS` list       | yes      | yes       |          | -                                                                                |\n| `prjItmPriority`                                             | enum(10) using `PRJITMPRIORITY` list     | yes      | yes       |          | -                                                                                |\n| `prjItmCreated`                                              | datetime                                 |          |           |          | -                                                                                |\n| `prjItmProgress`                                             | float(3, 0)                              |          | yes       |          | -                                                                                |\n| `prjItmDescription`                                          | text(10000)                              |          | yes       |          | -                                                                                |\n| `prjItmNumber`                                               | int(11)                                  | yes*     |           |          | -                                                                                |\n| `prjItmTitle`                                                | char(255)                                | yes      | yes       |          | -                                                                                |\n| `prjItmPrjId` link to **`PrjProject`**                       | id                                       |          | yes       |          | -                                                                                |\n\n### Lists\n\n* `PRJITMSTATUS`\n    - `DRAFT` Draft\n    - `BACKLOG` Backlog\n    - `SPRINT` Sprint\n    - `DOING` Doing\n    - `DONE` Done\n    - `CLOSED` Closed\n    - `REJECTED` Rejected\n* `PRJITMPRIORITY`\n    - `LOW` Low\n    - `NORMAL` Normal\n    - `HIGH` High\n    - `URGENT` Urgent\n\n`PrjItmAttachements` business object definition\n-----------------------------------------------\n\n\n\n### Fields\n\n| Name                                                         | Type                                     | Required | Updatable | Personal | Description                                                                      |\n|--------------------------------------------------------------|------------------------------------------|----------|-----------|----------|----------------------------------------------------------------------------------|\n| `prjItattItmId` link to **`PrjItem`**                        | id                                       | yes      | yes       |          | -                                                                                |\n| _Ref. `prjItattItmId.prjItmNumber`_                          | _int(11)_                                |          |           |          | -                                                                                |\n| `prjItattFile`                                               | document                                 | yes*     | yes       |          | -                                                                                |\n\n`PrjLblItm` business object definition\n--------------------------------------\n\n\n\n### Fields\n\n| Name                                                         | Type                                     | Required | Updatable | Personal | Description                                                                      |\n|--------------------------------------------------------------|------------------------------------------|----------|-----------|----------|----------------------------------------------------------------------------------|\n| `prjLblitmLblId` link to **`PrjLabel`**                      | id                                       | yes*     | yes       |          | -                                                                                |\n| _Ref. `prjLblitmLblId.prjLblName`_                           | _char(30)_                               |          |           |          | -                                                                                |\n| `prjLblitmItmId` link to **`PrjItem`**                       | id                                       | yes*     | yes       |          | -                                                                                |\n| _Ref. `prjLblitmItmId.prjItmNumber`_                         | _int(11)_                                |          |           |          | -                                                                                |\n\n`PrjProject` business object definition\n---------------------------------------\n\n\n\n### Fields\n\n| Name                                                         | Type                                     | Required | Updatable | Personal | Description                                                                      |\n|--------------------------------------------------------------|------------------------------------------|----------|-----------|----------|----------------------------------------------------------------------------------|\n| `prjPrjName`                                                 | char(100)                                | yes*     | yes       |          | -                                                                                |\n| `prjPrjDescription`                                          | text(5000)                               |          | yes       |          | -                                                                                |\n\n`PrjRole` business object definition\n------------------------------------\n\nRole on project\n\n### Fields\n\n| Name                                                         | Type                                     | Required | Updatable | Personal | Description                                                                      |\n|--------------------------------------------------------------|------------------------------------------|----------|-----------|----------|----------------------------------------------------------------------------------|\n| `prjRolPrjId` link to **`PrjProject`**                       | id                                       | yes*     | yes       |          | -                                                                                |\n| _Ref. `prjRolPrjId.prjPrjName`_                              | _char(100)_                              |          |           |          | -                                                                                |\n| `prjRolUsrId` link to **`PrjUser`**                          | id                                       | yes*     | yes       |          | -                                                                                |\n| _Ref. `prjRolUsrId.usr_login`_                               | _regexp(100)_                            |          |           | yes      | _Login_                                                                          |\n| `prjRolType`                                                 | enum(10) using `PRJROLTYPE` list         | yes*     | yes       |          | -                                                                                |\n\n### Lists\n\n* `PRJROLTYPE`\n    - `PRJ_MOA` MOA\n    - `PRJ_MOE` MOE\n    - `PRJ_READONLY` Lecture seule\n\n`PrjUser` business object definition\n------------------------------------\n\n\n\n### Fields\n\n| Name                                                         | Type                                     | Required | Updatable | Personal | Description                                                                      |\n|--------------------------------------------------------------|------------------------------------------|----------|-----------|----------|----------------------------------------------------------------------------------|\n\n`PrjVersion` business object definition\n---------------------------------------\n\n\n\n### Fields\n\n| Name                                                         | Type                                     | Required | Updatable | Personal | Description                                                                      |\n|--------------------------------------------------------------|------------------------------------------|----------|-----------|----------|----------------------------------------------------------------------------------|\n| `prjVrsPrjId` link to **`PrjProject`**                       | id                                       | yes      | yes       |          | -                                                                                |\n| _Ref. `prjVrsPrjId.prjPrjName`_                              | _char(100)_                              |          |           |          | -                                                                                |\n| `prjVrsVersion`                                              | char(10)                                 | yes*     | yes       |          | -                                                                                |\n| `prjVrsDueDate`                                              | date                                     |          | yes       |          | -                                                                                |\n\n`PrjLabel` business object definition\n-------------------------------------\n\n\n\n### Fields\n\n| Name                                                         | Type                                     | Required | Updatable | Personal | Description                                                                      |\n|--------------------------------------------------------------|------------------------------------------|----------|-----------|----------|----------------------------------------------------------------------------------|\n| `prjLblName`                                                 | char(30)                                 | yes*     | yes       |          | -                                                                                |\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimplicitesoftware%2Fmodule-projects","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsimplicitesoftware%2Fmodule-projects","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimplicitesoftware%2Fmodule-projects/lists"}