-
-
Notifications
You must be signed in to change notification settings - Fork 52
Kickstart the Contractor program #786
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
This document covers the organizational and operational aspects of the JSON Schema Contractor Program. | ||
|
||
### What is the JSON Schema Contractor Program? | ||
|
||
The JSON Schema Contractor Program aims to promote official professional services around JSON Schema coming from TSC members and Ambassors, connecting companies with the key people they need to be successful with JSON Schema, while promoting the sustainability of the JSON Schema organization. | ||
|
||
### How does the program work? | ||
|
||
- The TSC and existing ambassadors can opt-in to be listed as contractors at any time. | ||
- All contractor information will be displayed on the JSON Schema website. | ||
|
||
### Contractor requirements | ||
|
||
The participation will be determined and checked annually. The only requirement for being listed as a contractor is being a current TSC member or a current Ambassador. | ||
|
||
### Become an JSON Schema Contractor | ||
|
||
The process of becoming a listed contractor is very simple. Go to the **community** repository and open a PR to edit the `contractors.json` file. The TSC will then evaluate your candidacy! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"type": "array", | ||
"description": "Array of contractor profiles", | ||
"items": { | ||
"type": "object", | ||
"description": "Contractor profile", | ||
"properties": { | ||
"name": { | ||
"type": "string", | ||
"description": "Full name of the contractor" | ||
}, | ||
"bio": { | ||
"type": "string", | ||
"description": "Biography of the contractor" | ||
}, | ||
"email": { | ||
"type": "string", | ||
"format": "email", | ||
"description": "E-mail address of the contractor" | ||
}, | ||
"website": { | ||
"type": "string", | ||
"format": "url", | ||
"description": "Website URL of the contractor" | ||
}, | ||
"github": { | ||
"type": "string", | ||
"description": "GitHub profile URL of the contractor" | ||
}, | ||
"x": { | ||
"type": "string", | ||
"description": "X profile URL of the contractor" | ||
}, | ||
"mastodon": { | ||
"type": "string", | ||
"description": "Mastodon profile URL of the contractor" | ||
}, | ||
"linkedin": { | ||
"type": "string", | ||
"description": "LinkedIn profile URL of the contractor" | ||
}, | ||
"incorporatedIn": { | ||
"type": "array", | ||
"description": "Countries where the contractor is incorporated", | ||
"items": { | ||
"type": "string" | ||
} | ||
}, | ||
"type": { | ||
"enum": [ "tsc", "ambassor" ], | ||
"description": "Status of the contractor in the JSON Schema organization" | ||
}, | ||
"links": { | ||
"type": "array", | ||
"description": "List of key links to showcase", | ||
"items": { | ||
"type": "object", | ||
"description": "Details of a specific link", | ||
"properties": { | ||
"title": { | ||
"type": "string", | ||
"description": "Title of the link" | ||
}, | ||
"url": { | ||
"type": "string", | ||
"format": "uri", | ||
"description": "The link URL" | ||
} | ||
}, | ||
"required": ["title", "url"] | ||
} | ||
} | ||
}, | ||
"required": ["name", "bio", "type", "github", "incorporatedIn", "links"] | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
[ | ||
{ | ||
"name": "Juan Cruz Viotti", | ||
"github": "jviotti", | ||
"linkedin": "jviotti", | ||
"email": "jv@jviotti.com", | ||
"website": "https://www.jviotti.com", | ||
"type": "tsc", | ||
"incorporatedIn": [ "UK", "US" ], | ||
"bio": "I'm a TSC member of JSON Schema, did award-winning research at the University of Oxford in the space of binary serialization and compression using JSON Schema, co-authored an O'Reilly book covering JSON Schema, and own several projects in the ecosystem, ranging educational material like LearnJSONSchema.com to a high-performance C++ JSON Schema compiler and validator. I have experience helping organizations be successful with JSON Schema in the Data, API, and IoT spaces all the way from architecture and training to custom development. I'm eager to help you take your JSON Schema integrations to the next level!", | ||
"links": [ | ||
{ | ||
"title": "O'Reilly Book: Unifying Business, Data, and Code: Designing Data Products with JSON Schema", | ||
"url": "https://learning.oreilly.com/library/view/unifying-business-data/9781098144999/" | ||
}, | ||
{ | ||
"title": "JSON Schema CLI: The CLI for working with JSON Schema. Covers formatting, linting, testing, bundling, and more for both local development and CI/CD pipelines", | ||
"url": "https://github.com/intelligence-ai/jsonschema" | ||
}, | ||
{ | ||
"title": "JSON BinPack: binary serialization with JSON Schema, more space-efficient than Protocol Buffers and similar alternatives (work in progress)", | ||
"url": "https://jsonbinpack.sourcemeta.com" | ||
}, | ||
{ | ||
"title": "Alterschema: Automatic upgrades between versions of JSON Schema (downgrades coming soon)", | ||
"url": "https://alterschema.sourcemeta.com" | ||
}, | ||
{ | ||
"title": "JSON Toolkit: a C++ implementation of JSON Schema, featuring a state-of-the-art schema compiler and a custom JSON parser", | ||
"url": "https://github.com/sourcemeta/jsontoolkit" | ||
}, | ||
{ | ||
"title": "Blog post: A deep dive on lexical and dynamic scopes, essential for understanding more advanced topics like dynamic referencing", | ||
"url": "https://json-schema.org/blog/posts/understanding-lexical-dynamic-scopes" | ||
} | ||
] | ||
} | ||
] |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is really good. We should prop each other up by helping write these for each other.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great to hear you liked it and happy to help with other bios if I can!