| { | |
| "$schema": "https://json-schema.org/draft/2020-12/schema", | |
| "title": "ADGL Governance Profile", | |
| "type": "object", | |
| "required": [ | |
| "profile" | |
| ], | |
| "properties": { | |
| "profile": { | |
| "type": "object", | |
| "required": [ | |
| "id", | |
| "version" | |
| ], | |
| "properties": { | |
| "id": { | |
| "type": "string" | |
| }, | |
| "version": {}, | |
| "purpose": { | |
| "type": "string" | |
| }, | |
| "status": { | |
| "type": "string" | |
| } | |
| }, | |
| "additionalProperties": true | |
| }, | |
| "includes": { | |
| "type": "array" | |
| }, | |
| "mappings": { | |
| "type": "object" | |
| } | |
| }, | |
| "additionalProperties": true | |
| } |