generated from coulomb/repo-seed
Implement source lock and submission package baseline
This commit is contained in:
@@ -41,8 +41,38 @@
|
||||
"type": "string",
|
||||
"enum": ["candidate", "incubating", "active", "external", "deprecated"]
|
||||
},
|
||||
"supported_frameworks": { "type": "array", "items": { "type": "string" } },
|
||||
"authorities": { "type": "array", "items": { "type": "string" } },
|
||||
"supported_frameworks": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": ["string", "object"],
|
||||
"additionalProperties": false,
|
||||
"required": ["id"],
|
||||
"properties": {
|
||||
"id": { "type": "string" },
|
||||
"version": { "type": ["string", "null"] },
|
||||
"source_url": { "type": ["string", "null"] },
|
||||
"authority_ref": { "type": ["string", "null"] },
|
||||
"description": { "type": ["string", "null"] }
|
||||
}
|
||||
}
|
||||
},
|
||||
"authorities": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": ["string", "object"],
|
||||
"additionalProperties": false,
|
||||
"required": ["id"],
|
||||
"properties": {
|
||||
"id": { "type": "string" },
|
||||
"name": { "type": ["string", "null"] },
|
||||
"version": { "type": ["string", "null"] },
|
||||
"source_url": { "type": ["string", "null"] },
|
||||
"license": { "type": ["string", "null"] },
|
||||
"access": { "type": ["string", "null"] }
|
||||
}
|
||||
}
|
||||
},
|
||||
"metadata": { "type": "object" },
|
||||
"profile_schemas": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
@@ -89,6 +119,7 @@
|
||||
"module_path": { "type": ["string", "null"] },
|
||||
"callable": { "type": ["string", "null"] },
|
||||
"command": { "type": ["array", "null"], "items": { "type": "string" } },
|
||||
"metadata": { "type": "object" },
|
||||
"description": { "type": ["string", "null"] }
|
||||
}
|
||||
}
|
||||
@@ -105,6 +136,7 @@
|
||||
"module_path": { "type": "string" },
|
||||
"callable": { "type": "string" },
|
||||
"runner_ref": { "type": ["string", "null"] },
|
||||
"metadata": { "type": "object" },
|
||||
"description": { "type": ["string", "null"] }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user