Skip to content

Commit

Permalink
Removing empty descriptions - causes issues with TC54 doc generation …
Browse files Browse the repository at this point in the history
…that use these properties.

Signed-off-by: Steve Springett <steve@springett.us>
  • Loading branch information
stevespringett committed May 29, 2024
1 parent 6daab60 commit f5c36a5
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions schema/jsf-0.82.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,44 +10,48 @@
"title": "Signature",
"oneOf": [
{
"title": "Signature",
"additionalProperties": false,
"properties": {
"signers": {
"type": "array",
"title": "Signature",
"title": "Signers",
"description": "Unique top level property for Multiple Signatures. (multisignature)",
"items": {"$ref": "#/definitions/signer"}
"items": {"$ref": "file:///Users/steve/Development/CycloneDX/specification/schema/jsf-0.82.schema.json#/definitions/signer"}
}
}
},
{
"title": "Signature",
"additionalProperties": false,
"properties": {
"chain": {
"type": "array",
"title": "Signature",
"title": "Chain",
"description": "Unique top level property for Signature Chains. (signaturechain)",
"items": {"$ref": "#/definitions/signer"}
"items": {"$ref": "file:///Users/steve/Development/CycloneDX/specification/schema/jsf-0.82.schema.json#/definitions/signer"}
}
}
},
{
"title": "Signature",
"description": "Unique top level property for simple signatures. (signaturecore)",
"$ref": "#/definitions/signer"
"$ref": "file:///Users/steve/Development/CycloneDX/specification/schema/jsf-0.82.schema.json#/definitions/signer"
}
]
},
"signer": {
"type": "object",
"title": "Signature",
"title": "Signer",
"required": [
"algorithm",
"value"
],
"additionalProperties": false,
"properties": {
"algorithm": {
"title": "Algorithm",
"description": "Signature algorithm, either a recognized JWA [RFC7518] and RFC8037 [RFC8037] asymmetric key algorithm or a URI.",
"oneOf": [
{
"type": "string",
Expand Down Expand Up @@ -90,7 +94,7 @@
},
"certificatePath": {
"type": "array",
"title": "Certificate path",
"title": "Certificate Path",
"description": "Optional. Sorted array of X.509 [RFC5280] certificates, where the first element must contain the signature certificate. The certificate path must be contiguous but is not required to be complete.",
"items": {
"type": "string"
Expand All @@ -106,7 +110,7 @@
},
"value": {
"type": "string",
"title": "Signature",
"title": "Value",
"description": "The signature data. Note that the binary representation must follow the JWA [RFC7518] specifications."
}
}
Expand Down

0 comments on commit f5c36a5

Please sign in to comment.