Complete extension SDK maturity
This commit is contained in:
parent
67f2fc5346
commit
6758b3992c
19 changed files with 680 additions and 14 deletions
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"title": "SDK Fixture Assessment Profile",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"runtime_policy"
|
||||
],
|
||||
"properties": {
|
||||
"runtime_policy": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"fixture_mode"
|
||||
],
|
||||
"properties": {
|
||||
"fixture_mode": { "enum": ["native-result"] }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"title": "SDK Fixture Target Profile",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"subject_type",
|
||||
"artifacts",
|
||||
"declared_capabilities"
|
||||
],
|
||||
"properties": {
|
||||
"subject_type": { "enum": ["sdk-fixture-target"] },
|
||||
"artifacts": { "type": "array", "minItems": 1 },
|
||||
"declared_capabilities": { "type": "array", "minItems": 1 }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue