Skip to content

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 4 commits into from
Aug 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions programs/contractors/README.md
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!
77 changes: 77 additions & 0 deletions programs/contractors/contractors-schema.json
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"]
}
}
38 changes: 38 additions & 0 deletions programs/contractors/contractors.json
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!",
Copy link
Member

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.

Copy link
Member Author

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!

"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"
}
]
}
]