├── .github ├── ISSUE_TEMPLATE │ ├── incubator-project-proposal.md │ ├── new-api-provider.md │ ├── new-tooling-provider.md │ └── suggest-a-project.md └── workflows │ └── update.yaml ├── .gitignore ├── LICENSE ├── README.md ├── package-lock.json ├── package.json ├── projects └── incubator-projects │ ├── security │ └── proposal.md │ ├── sla │ └── proposal.md │ ├── travel │ └── proposal.md │ └── workflows │ └── proposal.md └── scripts └── update.js /.github/ISSUE_TEMPLATE/incubator-project-proposal.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Incubator Project Proposal 3 | about: Submit a request to setup a new incubator project within the OAI. 4 | title: '' 5 | labels: incubator project proposal 6 | assignees: kinlane 7 | 8 | --- 9 | 10 | ### Overview 11 | 12 | * Name of project (must be unique within OAI): 13 | * Project description (what it does, why it is valuable, origin and history): 14 | * Statement on alignment with OAI charter mission: 15 | 16 | ### Details 17 | 18 | * License and contribution guidelines: 19 | * Source control (GitHub by default): 20 | * External dependencies (including licenses): 21 | 22 | ### Coordination 23 | 24 | * Current committers list (how long working on project): 25 | * Communication channels (OAI Slack by default): 26 | * Issue tracker (GitHub by default): 27 | * Website(s): 28 | * Social media accounts: 29 | * Community size and any existing sponsorship: 30 | 31 | ### Financials 32 | 33 | * Funding: does the project have any specific funding requirements, either existing or expected?: 34 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-api-provider.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: New API Provider 3 | about: Submitting an API provider who has adopted OpenAPI. 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | ### Overview 11 | 12 | * Name of Provider: 13 | * Details of Adoption: 14 | * Reference URL: 15 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-tooling-provider.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: New Tooling Provider 3 | about: Submit an open source tool that uses OpenAPI. 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | # Overview 11 | 12 | * Name of the Tool: 13 | * Description of the Tool: 14 | * Github URL: 15 | * Website URL: 16 | * Twitter URL: 17 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggest-a-project.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Suggest a Project 3 | about: Suggest a project that you'd like to see happen within the OAI. 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | ### Overview 11 | 12 | * Project Title: 13 | * Project Description: 14 | 15 | ### Champion 16 | 17 | * Name of Champion #1: 18 | * Name of Champion #2: 19 | -------------------------------------------------------------------------------- /.github/workflows/update.yaml: -------------------------------------------------------------------------------- 1 | name: update-readme 2 | 3 | # author: @MikeRalphson 4 | # based on https://github.com/victoriadrake/victoriadrake/blob/master/.github/workflows/update.yaml 5 | 6 | on: 7 | push: 8 | branches: 9 | - main 10 | schedule: 11 | - cron: '0 23 * * *' 12 | workflow_dispatch: {} 13 | 14 | jobs: 15 | build-and-deploy: 16 | runs-on: ubuntu-latest 17 | 18 | steps: 19 | - name: 🍽️ Get working copy 20 | uses: actions/checkout@master 21 | with: 22 | fetch-depth: 1 23 | - name: 🍳 Shake & bake README 24 | run: | 25 | npm i 26 | node ./scripts/update.js ${{ secrets.GITHUB_TOKEN }} 27 | - name: 🚀 Deploy 28 | run: | 29 | git config user.name "${GITHUB_ACTOR}" 30 | git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" 31 | git add . 32 | git diff-index --quiet HEAD || git commit -am "Update dynamic content" 33 | git push --all -f https://${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git 34 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright The Linux Foundation 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # OpenAPI Initiative (OAI) Projects 2 | This is a repo for moving forward a variety of projects within the OpenAPI community. In an effort to be more transparent and help involve the community in a variety of ways we will be managing most projects within this repository. This README should provide you with everything you need to get started working on an existing project, or suggest a new project. 3 | 4 | ## How It All Works 5 | We are just getting started with this effort to external project work, so this process will evolve. Here are the moving parts for managing projects using this repository: 6 | 7 | - **README** - The README is the "home page" for all the project being managed and will be kept as an overview of everything that is happening. 8 | - **Issues** - We are using issues for the catch all basket for any comments, questions, or feedback, and projects can have multiple issues. 9 | - **Projects** - Once an idea or suggestion for a new project is set into motion it will be given a formal project for managing all tasks. 10 | - **Pages** - Ongoing projects may also have a dedicated markdown page that provides access to any related documents and artifacts. 11 | - **Folder** - Projects may also be able to have their own folders within the repository for organizing any code or related artifacts. 12 | 13 | Feel free to suggest a new project by submitting an issue, or get involved in a specific project by jumping in on the issues or the discussions for each area of work. 14 | 15 | 16 | ## Active Projects 17 | These are the projects currently being moved forward in some capacity. Each project has a listing of to-do, in progress, and done tasks, as well as link to any open issues or discussions. 18 | 19 | Project|Description| 20 | |---|---| 21 | |[**Member Showcase & Engagement**](https://github.com/OAI/Projects/projects/2)|Continually improving how we showcase and engage with the members of the OAI, and increase their participation within the OAS community.| 22 | |[**Profile & Engage with API Providers**](https://github.com/OAI/Projects/projects/3)|Work to identify, profile, and build relationships with API providers who have implemented the OpenAPI specification, and publish profile to a central database.| 23 | |[**Profile and Engage with Open Source Tooling**](https://github.com/OAI/Projects/projects/4)|Establish an official directory of open source tooling that uses OAS, and actively work to establish and build relationships with each tooling provider to get them more involved in the community.| 24 | |[**Business Sector Showcase & Engagement**](https://github.com/OAI/Projects/projects/5)|Work to profile business sectors that are putting OpenAPI to work, then engage, and build relationships with individuals or organizations, while helping stimulate OAI special interest groups in these areas.| 25 | |[**Quantify the Scope of the OpenAPI Community**](https://github.com/OAI/Projects/projects/6)|Work to establish the size and scope of the OpenAPI community and then track on the growth over time.| 26 | |[**Strengthen Multi-Specification Relationships**](https://github.com/OAI/Projects/projects/7)|Ongoing work to help strengthen the relationships between the OAI and other API specifications like AsyncAPI, GraphQL, JSON Schema, and gRPC.| 27 | |[**Curate and Publish API Articles, Podcasts, Videos**](https://github.com/OAI/Projects/projects/8)|Work to discover, curate, and then showcase and syndicate the existing articles, podcasts, and videos that exist about OpenAPI.| 28 | |[**Additional OAI Leadership**](https://github.com/OAI/Projects/projects/9)|Work to define the roles for 3 additional leadership within the OAI, and help them be successful in work over a year.| 29 | |[**JSON Schema Documentation Update**](https://github.com/OAI/Projects/projects/10)|This is work to invest in the updating of JSON Schema documentation, helping invest in supporting specifications.| 30 | |[**OpenAPI Search Engine Optimization**](https://github.com/OAI/Projects/projects/11)|This is ongoing work to help improve the search engine optimization for the OAI and OAS, helping increase it's presence.| 31 | |[**Workflow SIG**](https://github.com/OAI/Projects/projects/13)|This is a group to move forward the workflow and scenario conversation.| 32 | |[**Security SIG**](https://github.com/OAI/Projects/projects/14)|This is a group to move forward the security discussion.| 33 | |[**SLA SIG**](https://github.com/OAI/Projects/projects/15)|This is a group to move forward the SLA conversation.| 34 | |[**Travel SIG**](https://github.com/OAI/Projects/projects/16)|This is a group to move the travel conversation forward.| 35 | |[**Overlays**](https://github.com/OAI/Projects/projects/17)|This is to track on all the moving parts of the overlays conversation.| 36 | |[**Healthcare SIG**](https://github.com/OAI/Projects/projects/18)|This is a project to setup a working group to focus on the healthcare industry.| 37 | |[**Pitch Deck**](https://github.com/OAI/Projects/projects/19)|Move forward the work around a formal pitch deck to represent what OpenAPI is to individual onboarding with the spec or the OAI as an organization.| 38 | |[**API Specifications Conference**](https://github.com/OAI/Projects/projects/20)|Keep track of some of the goings on around ASC.| 39 | |[**Office Hours**](https://github.com/OAI/Projects/projects/22)|This is a project to offer ongoing weekly office hours where anyone can come and learn about the OAI, OAS, and how it all works.| 40 | |[**SIG Planning**](https://github.com/OAI/Projects/projects/23)|This is a project to track on the details across the SIGs. Each SIG has own project board, but this is used to plan across the SIGs.| 41 | |[**New Member Identification & Engagement**](https://github.com/OAI/Projects/projects/24)|Work to identify potential new members to the OAI and reach out to them to help start a conversation and make them aware of the benefits of being a member.| 42 | |[**Business Governance Board (BGB)**](https://github.com/OAI/Projects/projects/25)|This is used to manage tasks for the BGB, helping Neal, Isabel, and Kin be more organized.| 43 | |[**Extension Directory**](https://github.com/OAI/Projects/projects/26)|This is a project to move forward an official OAI extension registry, cataloging how the specification is being extended.| 44 | |[**Blog Process**](https://github.com/OAI/Projects/projects/27)|How do you submit a story for inclusion on the blog.| 45 | 46 | ## Incubator Projects 47 | 48 | Project|Description| 49 | |---|---| 50 | 51 | 52 | As projects are complete they will be closed, with some projects living on forever and issues and discussions being used to drive ongoing work. 53 | 54 | ## Active Participants 55 | These are the individuals who are currently part of moving projects forward as part of the OAI, and here to answer any questions. 56 | 57 | - [Kin Lane](https://github.com/kinlane) - Representing as co-chair of the BGB Board. 58 | - [Chris Tsai](https://github.com/grizzicle) - Identifying & engaging new members to grow the OAI. 59 | - [Chris Wood](https://github.com/SensibleWood) - Engaging with open source tooling and curate content. 60 | - [Phil Sturgeon](https://github.com/philsturgeon) - Engaging with APIs, open source tooling and curate content. 61 | 62 | If you'd like to be added please submit a Github issue stating how you'd like to help and we'll add you to the list of participants. 63 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "oai-projects", 3 | "version": "1.0.0", 4 | "lockfileVersion": 2, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "oai-projects", 9 | "version": "1.0.0", 10 | "license": "Apache-2.0", 11 | "dependencies": { 12 | "node-fetch": "^2.6.1" 13 | }, 14 | "devDependencies": {} 15 | }, 16 | "node_modules/node-fetch": { 17 | "version": "2.6.1", 18 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", 19 | "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==", 20 | "engines": { 21 | "node": "4.x || >=6.0.0" 22 | } 23 | } 24 | }, 25 | "dependencies": { 26 | "node-fetch": { 27 | "version": "2.6.1", 28 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", 29 | "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==" 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "oai-projects", 3 | "version": "1.0.0", 4 | "description": "This is a repo for moving forward a variety of projects within the OpenAPI community. In an effort to be more transparent and help involve the community in a variety of ways we will be managing most projects within this repository. This README should provide you with everything you need to get started working on an existing project, or suggest a new project.", 5 | "main": "index.js", 6 | "dependencies": { 7 | "node-fetch": "^2.6.1" 8 | }, 9 | "devDependencies": {}, 10 | "scripts": { 11 | "test": "echo \"Error: no test specified\" && exit 1" 12 | }, 13 | "repository": { 14 | "type": "git", 15 | "url": "git+https://github.com/OAI/Projects.git" 16 | }, 17 | "keywords": [], 18 | "author": "Kin Lane", 19 | "license": "Apache-2.0", 20 | "bugs": { 21 | "url": "https://github.com/OAI/Projects/issues" 22 | }, 23 | "homepage": "https://github.com/OAI/Projects#readme" 24 | } 25 | -------------------------------------------------------------------------------- /projects/incubator-projects/security/proposal.md: -------------------------------------------------------------------------------- 1 | # Security Incubator Project Proposal 2 | This is a proposal for setting up a new working group dedicated to security using OAS. 3 | 4 | ## Draft Proposal (Submit PR to Update) 5 | Once this is finished we will submit as a Github issue for review by the Technical Oversight Board (TOB). 6 | 7 | ### Overview 8 | 9 | * Name of project (must be unique within OAI): 10 | * Project description (what it does, why it is valuable, origin and history): 11 | * Statement on alignment with OAI charter mission: 12 | 13 | ### Details 14 | 15 | * License and contribution guidelines: 16 | * Source control (GitHub by default): 17 | * External dependencies (including licenses): 18 | 19 | ### Coordination 20 | 21 | * Current committers list (how long working on project): 22 | * Communication channels (OAI Slack by default): 23 | * Issue tracker (GitHub by default): 24 | * Website(s): 25 | * Social media accounts: 26 | * Community size and any existing sponsorship: 27 | 28 | ### Financial 29 | 30 | * Funding: does the project have any specific funding requirements, either existing or expected?: 31 | -------------------------------------------------------------------------------- /projects/incubator-projects/sla/proposal.md: -------------------------------------------------------------------------------- 1 | # SLA Incubator Project Proposal 2 | This is a proposal for setting up a new working group dedicated to SLA using OAS. 3 | 4 | ## Draft Proposal (Submit PR to Update) 5 | Once this is finished we will submit as a Github issue for review by the Technical Oversight Board (TOB). 6 | 7 | ### Overview 8 | 9 | * Name of project (must be unique within OAI): 10 | * Project description (what it does, why it is valuable, origin and history): 11 | * Statement on alignment with OAI charter mission: 12 | 13 | ### Details 14 | 15 | * License and contribution guidelines: 16 | * Source control (GitHub by default): 17 | * External dependencies (including licenses): 18 | 19 | ### Coordination 20 | 21 | * Current committers list (how long working on project): 22 | * Communication channels (OAI Slack by default): 23 | * Issue tracker (GitHub by default): 24 | * Website(s): 25 | * Social media accounts: 26 | * Community size and any existing sponsorship: 27 | 28 | ### Financial 29 | 30 | * Funding: does the project have any specific funding requirements, either existing or expected?: 31 | -------------------------------------------------------------------------------- /projects/incubator-projects/travel/proposal.md: -------------------------------------------------------------------------------- 1 | # Travel Journey Incubator Project Proposal 2 | This is a proposal for setting up a new working group dedicated to airline, hospitality, rail, and other travel industries using OAS. 3 | 4 | ## Draft Proposal (Submit PR to Update) 5 | Once this is finished we will submit as a Github issue for review by the Technical Oversight Board (TOB). 6 | 7 | ### Overview 8 | 9 | * Name of project (must be unique within OAI): Travel Journey 10 | * Project description (what it does, why it is valuable, origin and history): 11 | * Statement on alignment with OAI charter mission: 12 | 13 | ### Details 14 | 15 | * License and contribution guidelines: 16 | * Source control (GitHub by default): 17 | * External dependencies (including licenses): 18 | 19 | ### Coordination 20 | 21 | * Current committers list (how long working on project): 22 | * Communication channels (OAI Slack by default): 23 | * Issue tracker (GitHub by default): 24 | * Website(s): 25 | * Social media accounts: 26 | * Community size and any existing sponsorship: 27 | 28 | ### Financial 29 | 30 | * Funding: does the project have any specific funding requirements, either existing or expected?: 31 | -------------------------------------------------------------------------------- /projects/incubator-projects/workflows/proposal.md: -------------------------------------------------------------------------------- 1 | # Workflow Incubator Project Proposal 2 | This is a proposal for setting up a new working group dedicated to workflows and orchestrations using OAS. 3 | 4 | ## Draft Proposal (Submit PR to Update) 5 | Once this is finished we will submit as a Github issue for review by the Technical Oversight Board (TOB). 6 | 7 | ### Overview 8 | 9 | * Name of project (must be unique within OAI): 10 | * Project description (what it does, why it is valuable, origin and history): 11 | * Statement on alignment with OAI charter mission: 12 | 13 | ### Details 14 | 15 | * License and contribution guidelines: 16 | * Source control (GitHub by default): 17 | * External dependencies (including licenses): 18 | 19 | ### Coordination 20 | 21 | * Current committers list (how long working on project): 22 | * Communication channels (OAI Slack by default): 23 | * Issue tracker (GitHub by default): 24 | * Website(s): 25 | * Social media accounts: 26 | * Community size and any existing sponsorship: 27 | 28 | ### Financial 29 | 30 | * Funding: does the project have any specific funding requirements, either existing or expected?: 31 | -------------------------------------------------------------------------------- /scripts/update.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const fs = require('fs'); 4 | const http = require('http'); 5 | const https = require('https'); 6 | 7 | const fetch = require('node-fetch'); 8 | 9 | const httpAgent = new http.Agent({ keepAlive: true }); 10 | const httpsAgent = new https.Agent({ keepAlive: true, rejectUnauthorized: false }); 11 | const bobwAgent = function(_parsedURL) { 12 | if (_parsedURL.protocol == 'http:') { 13 | return httpAgent; 14 | } else { 15 | return httpsAgent; 16 | } 17 | }; 18 | 19 | const token = process.env['GH_TOKEN'] || process.argv[2]; 20 | const auth = 'Basic ' + Buffer.from(process.env.GITHUB_ACTOR+ ':' + token).toString('base64'); 21 | const delimiter = '\n'; 22 | 23 | let md = ''; 24 | 25 | function append(s = ''){ 26 | md += s + '\n'; 27 | return md; 28 | } 29 | 30 | async function main() { 31 | const u = `https://api.github.com/repos/OAI/Projects/projects`; 32 | try { 33 | const res = await fetch(u,{ agent: bobwAgent, headers: { 'Accept': 'application/vnd.github.inertia-preview+json', 'User-Agent': 'mermade', Authorization: auth } }); 34 | const p = await res.json(); 35 | append('## Active Projects'); 36 | append('These are the projects currently being moved forward in some capacity. Each project has a listing of to-do, in progress, and done tasks, as well as link to any open issues or discussions.'); 37 | append(); 38 | append('Project|Description|'); 39 | append('|---|---|'); 40 | for (let project of p) { 41 | if (project.state === 'open' && project.name.indexOf('Incubator')<0) { 42 | append(`|[**${project.name}**](${project.html_url})|${project.body}|`); 43 | } 44 | } 45 | append(); 46 | append('## Incubator Projects'); 47 | append(); 48 | append('Project|Description|'); 49 | append('|---|---|'); 50 | for (let project of p) { 51 | if (project.state === 'open' && project.name.indexOf('Incubator')>=0) { 52 | append(`|[**${project.name}**](${project.html_url})|${project.body}|`); 53 | } 54 | } 55 | 56 | let readme = fs.readFileSync('./README.md','utf8'); 57 | readme = readme.split(delimiter); 58 | readme = readme[0] + delimiter + md + delimiter + readme[2]; 59 | fs.writeFileSync('./README.md',readme,'utf8'); 60 | } 61 | catch (ex) { 62 | console.warn(ex.message); 63 | } 64 | } 65 | 66 | main(); 67 | --------------------------------------------------------------------------------