Coder Social home page Coder Social logo

charter's Introduction

charter

A charter builder that creates a project charter based on a json file written in a specific way.
(Made for a school project)

Json Schema

{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "properties": {
      "charter": {
        "type": "array",
        "items": [
          {
            "type": "object",
            "properties": {
              "header": {
                "type": "object",
                "properties": {
                  "PROGETTO": {
                    "type": "string"
                  },
                  "DATA INIZIO": {
                    "type": "string"
                  },
                  "NUM REVISIONE": {
                    "type": "integer"
                  },
                  "CLIENTE": {
                    "type": "string"
                  },
                  "PROJECT MANAGER": {
                    "type": "string"
                  },
                  "SPONSOR": {
                    "type": "string"
                  }
                },
                "required": [
                  "PROGETTO",
                  "DATA INIZIO",
                  "NUM REVISIONE",
                  "CLIENTE",
                  "PROJECT MANAGER",
                  "SPONSOR"
                ]
              }
            },
            "required": [
              "header"
            ]
          },
          {
            "type": "object",
            "properties": {
              "content": {
                "type": "object",
                "properties": {
                  "OBIETTIVI": {
                    "type": "array",
                    "items": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "string"
                      },
                      {
                        "type": "string"
                      }
                    ]
                  },
                  "REQUISITI": {
                    "type": "array",
                    "items": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "string"
                      },
                      {
                        "type": "string"
                      }
                    ]
                  },
                  "DELIVERABLE": {
                    "type": "array",
                    "items": [
                      {
                        "type": "string"
                      }
                    ]
                  },
                  "MILESTONE": {
                    "type": "array",
                    "items": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "string"
                      },
                      {
                        "type": "string"
                      },
                      {
                        "type": "string"
                      },
                      {
                        "type": "string"
                      },
                      {
                        "type": "string"
                      },
                      {
                        "type": "string"
                      }
                    ]
                  },
                  "VINCOLI": {
                    "type": "array",
                    "items": [
                      {
                        "type": "string"
                      }
                    ]
                  },
                  "DIPENDENZE": {
                    "type": "array",
                    "items": [
                      {
                        "type": "string"
                      }
                    ]
                  },
                  "CALENDARIO": {
                    "type": "array",
                    "items": [
                      {
                        "type": "string"
                      }
                    ]
                  },
                  "TEAM": {
                    "type": "array",
                    "items": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "string"
                      },
                      {
                        "type": "string"
                      }
                    ]
                  },
                  "BUDGET": {
                    "type": "object",
                    "properties": {
                      "stima vendite addizionali": {
                        "type": "array",
                        "items": [
                          {
                            "type": "integer"
                          }
                        ]
                      },
                      "Stima costi": {
                        "type": "array",
                        "items": [
                          {
                            "type": "integer"
                          }
                        ]
                      }
                    },
                    "required": [
                      "stima vendite addizionali",
                      "Stima costi"
                    ]
                  },
                  "RISCHI": {
                    "type": "array",
                    "items": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "string"
                      },
                      {
                        "type": "string"
                      }
                    ]
                  },
                  "FIRME": {
                    "type": "array",
                    "items": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "string"
                      },
                      {
                        "type": "string"
                      },
                      {
                        "type": "string"
                      }
                    ]
                  }
                },
                "required": [
                  "OBIETTIVI",
                  "REQUISITI",
                  "DELIVERABLE",
                  "MILESTONE",
                  "VINCOLI",
                  "DIPENDENZE",
                  "CALENDARIO",
                  "TEAM",
                  "BUDGET",
                  "RISCHI",
                  "FIRME"
                ]
              }
            },
            "required": [
              "content"
            ]
          }
        ]
      }
    },
    "required": [
      "charter"
    ]
}

Example:

{
    "charter": [
        {
            "header": {
                "PROGETTO": "Project A",
                "DATA INIZIO": "2023-01-01",
                "NUM REVISIONE": 1,
                "CLIENTE": "Client A",
                "PROJECT MANAGER": "John Doe",
                "SPONSOR": "Sponsor A"
            }
        },
        {
            "content": {
                "OBIETTIVI": [
                    "Complete project A within the given timeframe",
                    "Deliver high-quality software"
                ],
                "REQUISITI": [
                    "User authentication and authorization",
                    "Secure data storage",
                    "Responsive UI"
                ],
                "DELIVERABLE": [
                    "Fully functional software"
                ],
                "MILESTONE": [
                    "Design complete",
                    "Development complete",
                    "Testing complete"
                ],
                "VINCOLI": [
                    "Project must use a specific technology stack",
                    "Budget must not exceed $500,000"
                ],
                "DIPENDENZE": [
                    "Completion of feature X is required for feature Y"
                ],
                "CALENDARIO": [
                    "Design phase: 2 weeks",
                    "Development phase: 6 months",
                    "Testing phase: 1 month"
                ],
                "TEAM": [
                    "John Doe",
                    "Jane Doe",
                    "Bob Smith"
                ],
                "BUDGET": {
                    "stima vendite addizionali": [
                        10000.0,
                        15000.0,
                        20000.0
                    ],
                    "Stima costi": [
                        400000.0,
                        500000.0,
                        600000.0
                    ]
                },
                "RISCHI": [
                    "Delays due to unexpected bugs",
                    "Lack of availability of team members"
                ],
                "FIRME": [
                    "John Doe",
                    "Jane Doe",
                    "Bob Smith",
                    "Sponsor A"
                ]
            }
        }
    ]
}

charter's People

Contributors

lumarans30 avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.