
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
data-standard
Advanced tools
The code in this repository is aimed at data pipeline engineers with the intent of sharing broadly if it is applicable to other projects. To that end no sensitive or proprietary information such as company names, trade secrets, or customer data will be co
The standard.json file contains a generalized JSON standard for describing the queryable data entities. It is backed by a JSON schema definition file schema.json.
The standard implements a Map like data structure. The data entities are the keys, and the values are objects with properties that can be used to retrieve the data entity. Every item must have two properties: sourceEndpoint and queries. Everything else is optional.
Make use of the reserved $comment keyword to add comment notations to the standard wherever you see fit. Visit this Understanding JSON Schema page for more information on this reserved keyword.
All source files can be found in the src/ directory. Everything is implemented in TypeScript.
npm i.env file at the root of the project directory for environment variablesCLIENT_ID=""
CLIENT_SECRET=""
TENANT_ID=""
REDIRECT_URI=""
RESOURCE=""
Examples are meant to demonstrate the standard in a more realistic manner. They can make use of the utility functions located in the utils/ directory and should be constrained to a single file.
Examples should be executed using ts-node (included as a dependency of this project). Thus, the example file should be considered a script and not a module. The package.json contains a scripts property where you can create an npm script for executing examples. Check out the example:adf script as an example.
New scripts should follow the template:
"example:<Example Name>": "ts-node --project tsconfig.json src/examples/<Example Name>.ts"
Running tests is as easy as executing npm run test. Tests are powered by Jest test runner.
When adding new tests, keep in mind that Jest utility types are included globally. This means you do not to explicitly import methods such as test, describe, and expect.
The standard is validated by the test suite using the Ajv package (another JSON validator).
Coverage is enabled! Run npm run test -- --coverage to see the output.
FAQs
The code in this repository is aimed at data pipeline engineers with the intent of sharing broadly if it is applicable to other projects. To that end no sensitive or proprietary information such as company names, trade secrets, or customer data will be co
The npm package data-standard receives a total of 1 weekly downloads. As such, data-standard popularity was classified as not popular.
We found that data-standard demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.