Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@ministryofjustice/fb-components-core
Advanced tools
Components for Form Builder.
npm install @ministryofjustice/fb-components-core
Components for Form Builder are described with the JSON Schema vocabulary in discrete JSON files. They are contained in the directory specifications
.
Some data objects (which satisfy the schemas and are consumed by the Form Builder application) are contained in the directory metadata
.
$id
and $ref
Each schema has an $id
. Many schemas have one or more $ref
attributes. Superficially, both are URIs, but they require additional processing at runtime to resolve.
For instance, the definition for a button component may resemble this schema:
{
"$id": "http://gov.uk/schema/v1.0.0/definition/button",
"_name": "definition.button",
"title": "Button component definition"
}
And that definition may be referenced elsewhere:
{
"$id": "http://gov.uk/schema/v1.0.0/button",
"_name": "button",
"title": "Button component",
"allOf: [
{
"$ref": "http://gov.uk/schema/v1.0.0/definition/button"
}
]
}
But neither the $id
nor the $ref
URIs resolve to a location accessible with HTTP.
Instead these URIs must be transformed and mapped to the location of the schema, wherever it is.
That location can be determined in two steps:
The fragment http://gov.uk/schema/v1.0.0
of the URI should map to the specifications
directory wherever @ministryofjustice/fb-components-core
is installed or hosted. (The location may be on the file system or at a resource on the internet)
The remainder of the URI should be used to compute the path to that particular JSON Schema file, such that /definition/button
becomes /definition/button/definition.button.schema.json
While these patterns are internally consistent and the schemas can be validated with some tools, such as AJV, they cannot be dereferenced by other tools, such as JSON Schema $Ref Parser, without an additional processing step.
The schemas are highly referential and some represent tree structures which validators can interpret as circular. Circular references cannot easily be transformed to JSON and the schemas may fail validation, depending on the tool.
Recursion is isolated to schemas which define conditional behaviour, and specifically conditions which can themselves have conditions:
/specifications/definition/conditional/boolean/definition.conditional.boolean.schema.json
/specifications/definition/conditions/any/definition.conditions.all.schema.json
/specifications/definition/conditions/all/definition.conditions.any.schema.json
/specifications/definition/conditions/exactly/definition.conditions.exactly.schema.json
These conditions are tree structures which can resolve.
FAQs
Form Builder core components
The npm package @ministryofjustice/fb-components-core receives a total of 37 weekly downloads. As such, @ministryofjustice/fb-components-core popularity was classified as not popular.
We found that @ministryofjustice/fb-components-core demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 12 open source maintainers 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.