29 lines
498 B
YAML
29 lines
498 B
YAML
|
|
$schema: https://json-schema.org/draft/2020-12/schema
|
||
|
|
$id: https://info-tech-canon.local/schemas/assimilation.schema.yaml
|
||
|
|
title: InfoTechCanon Assimilation Record
|
||
|
|
type: object
|
||
|
|
required:
|
||
|
|
- id
|
||
|
|
- title
|
||
|
|
- source
|
||
|
|
- disposition
|
||
|
|
properties:
|
||
|
|
id:
|
||
|
|
type: string
|
||
|
|
title:
|
||
|
|
type: string
|
||
|
|
source:
|
||
|
|
type: string
|
||
|
|
disposition:
|
||
|
|
enum:
|
||
|
|
- observe
|
||
|
|
- map
|
||
|
|
- adopt
|
||
|
|
- adapt
|
||
|
|
- reject
|
||
|
|
impacts:
|
||
|
|
type: array
|
||
|
|
items:
|
||
|
|
type: string
|
||
|
|
additionalProperties: true
|