Skip to content

Commit

Permalink
Update Sindri Manifest Schema to allow $schema field
Browse files Browse the repository at this point in the history
Updates the schema so `$schema` is tolerated.

Merges #21
  • Loading branch information
sangaline authored Nov 30, 2023
1 parent 4e00f59 commit c2cdb58
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions sindri-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,14 @@
"$ref": "#/definitions/CircomWitnessCompilerOptions"
}
]
},
"$schema": {
"type": "string",
"title": "Sindri Manifest JSON Schema URL",
"description": "The URL pointing to a Sindri JSON Manifest schema definition.",
"examples": [
"https://forge.sindri.app/api/v1/sindri-manifest-schema.json"
]
}
},
"required": ["circuitType", "name"],
Expand Down Expand Up @@ -151,6 +159,14 @@
"$ref": "#/definitions/GnarkProvingSchemeOptions"
}
]
},
"$schema": {
"type": "string",
"title": "Sindri Manifest JSON Schema URL",
"description": "The URL pointing to a Sindri JSON Manifest schema definition.",
"examples": [
"https://forge.sindri.app/api/v1/sindri-manifest-schema.json"
]
}
},
"required": [
Expand Down Expand Up @@ -194,6 +210,14 @@
"packageName": {
"title": "Package Name",
"type": "string"
},
"$schema": {
"type": "string",
"title": "Sindri Manifest JSON Schema URL",
"description": "The URL pointing to a Sindri JSON Manifest schema definition.",
"examples": [
"https://forge.sindri.app/api/v1/sindri-manifest-schema.json"
]
}
},
"required": [
Expand Down Expand Up @@ -237,6 +261,14 @@
"title": "Thread Builder",
"enum": ["GateThreadBuilder", "RlcThreadBuilder"],
"type": "string"
},
"$schema": {
"type": "string",
"title": "Sindri Manifest JSON Schema URL",
"description": "The URL pointing to a Sindri JSON Manifest schema definition.",
"examples": [
"https://forge.sindri.app/api/v1/sindri-manifest-schema.json"
]
}
},
"required": [
Expand Down Expand Up @@ -276,6 +308,14 @@
"packageName": {
"title": "Package Name",
"type": "string"
},
"$schema": {
"type": "string",
"title": "Sindri Manifest JSON Schema URL",
"description": "The URL pointing to a Sindri JSON Manifest schema definition.",
"examples": [
"https://forge.sindri.app/api/v1/sindri-manifest-schema.json"
]
}
},
"required": [
Expand Down Expand Up @@ -313,6 +353,14 @@
"$ref": "#/definitions/NoirProvingSchemeOptions"
}
]
},
"$schema": {
"type": "string",
"title": "Sindri Manifest JSON Schema URL",
"description": "The URL pointing to a Sindri JSON Manifest schema definition.",
"examples": [
"https://forge.sindri.app/api/v1/sindri-manifest-schema.json"
]
}
},
"required": ["circuitType", "name"],
Expand Down

0 comments on commit c2cdb58

Please sign in to comment.