azdev-automation
Version:
Azure DevOps automation framework enables access control automation of projects, pipelines and repositories configuration in Azure DevOps Services
34 lines • 750 B
JSON
{
"definitions": {},
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://example.com/root.json",
"type": "array",
"title": "Work items permission policies",
"items": {
"$id": "#/items",
"type": "object",
"title": "Policies",
"required": [
"name",
"definition"
],
"properties": {
"name": {
"$id": "#/items/properties/name",
"type": "string",
"minLength": 1,
"title": "Policy name",
"default": "",
"examples": [
"My Policy"
],
"pattern": "^(.*)$"
},
"definition": {
"$id": "#/items/properties/definition",
"type": "array",
"title": "Policy definition"
}
}
}
}