-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #786 from jviotti/contractors
Kickstart the Contractor program
- Loading branch information
Showing
3 changed files
with
133 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 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 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" | ||
} | ||
] | ||
} | ||
] |