generated from coulomb/repo-seed
Add validation indexes and generated views
This commit is contained in:
27
infospace/schemas/agent-brief.schema.yaml
Normal file
27
infospace/schemas/agent-brief.schema.yaml
Normal file
@@ -0,0 +1,27 @@
|
||||
$schema: https://json-schema.org/draft/2020-12/schema
|
||||
$id: https://info-tech-canon.local/schemas/agent-brief.schema.yaml
|
||||
title: InfoTechCanon Agent Brief
|
||||
type: object
|
||||
required:
|
||||
- id
|
||||
- title
|
||||
- audience
|
||||
- purpose
|
||||
properties:
|
||||
id:
|
||||
type: string
|
||||
title:
|
||||
type: string
|
||||
audience:
|
||||
type: string
|
||||
purpose:
|
||||
type: string
|
||||
commands:
|
||||
type: array
|
||||
items:
|
||||
type: string
|
||||
entrypoints:
|
||||
type: array
|
||||
items:
|
||||
type: string
|
||||
additionalProperties: true
|
||||
28
infospace/schemas/assimilation.schema.yaml
Normal file
28
infospace/schemas/assimilation.schema.yaml
Normal file
@@ -0,0 +1,28 @@
|
||||
$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
|
||||
26
infospace/schemas/concept.schema.yaml
Normal file
26
infospace/schemas/concept.schema.yaml
Normal file
@@ -0,0 +1,26 @@
|
||||
$schema: https://json-schema.org/draft/2020-12/schema
|
||||
$id: https://info-tech-canon.local/schemas/concept.schema.yaml
|
||||
title: InfoTechCanon Concept
|
||||
type: object
|
||||
required:
|
||||
- id
|
||||
- title
|
||||
- owner
|
||||
properties:
|
||||
id:
|
||||
type: string
|
||||
title:
|
||||
type: string
|
||||
owner:
|
||||
type: string
|
||||
definition:
|
||||
type: string
|
||||
aliases:
|
||||
type: array
|
||||
items:
|
||||
type: string
|
||||
relationships:
|
||||
type: array
|
||||
items:
|
||||
type: object
|
||||
additionalProperties: true
|
||||
17
infospace/schemas/index.yaml
Normal file
17
infospace/schemas/index.yaml
Normal file
@@ -0,0 +1,17 @@
|
||||
schemas:
|
||||
- id: standard
|
||||
path: standard.schema.yaml
|
||||
- id: concept
|
||||
path: concept.schema.yaml
|
||||
- id: mapping
|
||||
path: mapping.schema.yaml
|
||||
- id: profile
|
||||
path: profile.schema.yaml
|
||||
- id: assimilation
|
||||
path: assimilation.schema.yaml
|
||||
- id: interface-card
|
||||
path: interface-card.schema.yaml
|
||||
- id: agent-brief
|
||||
path: agent-brief.schema.yaml
|
||||
- id: workplan
|
||||
path: workplan.schema.yaml
|
||||
25
infospace/schemas/interface-card.schema.yaml
Normal file
25
infospace/schemas/interface-card.schema.yaml
Normal file
@@ -0,0 +1,25 @@
|
||||
$schema: https://json-schema.org/draft/2020-12/schema
|
||||
$id: https://info-tech-canon.local/schemas/interface-card.schema.yaml
|
||||
title: Canon Interface Card
|
||||
type: object
|
||||
required:
|
||||
- id
|
||||
- title
|
||||
- consumer
|
||||
- canon_surfaces
|
||||
properties:
|
||||
id:
|
||||
type: string
|
||||
title:
|
||||
type: string
|
||||
consumer:
|
||||
type: string
|
||||
canon_surfaces:
|
||||
type: array
|
||||
items:
|
||||
type: string
|
||||
expectations:
|
||||
type: array
|
||||
items:
|
||||
type: string
|
||||
additionalProperties: true
|
||||
23
infospace/schemas/mapping.schema.yaml
Normal file
23
infospace/schemas/mapping.schema.yaml
Normal file
@@ -0,0 +1,23 @@
|
||||
$schema: https://json-schema.org/draft/2020-12/schema
|
||||
$id: https://info-tech-canon.local/schemas/mapping.schema.yaml
|
||||
title: InfoTechCanon Mapping
|
||||
type: object
|
||||
required:
|
||||
- id
|
||||
- title
|
||||
- source
|
||||
- target
|
||||
properties:
|
||||
id:
|
||||
type: string
|
||||
title:
|
||||
type: string
|
||||
source:
|
||||
type: string
|
||||
target:
|
||||
type: string
|
||||
mapping_type:
|
||||
type: string
|
||||
confidence:
|
||||
type: string
|
||||
additionalProperties: true
|
||||
24
infospace/schemas/profile.schema.yaml
Normal file
24
infospace/schemas/profile.schema.yaml
Normal file
@@ -0,0 +1,24 @@
|
||||
$schema: https://json-schema.org/draft/2020-12/schema
|
||||
$id: https://info-tech-canon.local/schemas/profile.schema.yaml
|
||||
title: InfoTechCanon Profile
|
||||
type: object
|
||||
required:
|
||||
- id
|
||||
- title
|
||||
- scope
|
||||
properties:
|
||||
id:
|
||||
type: string
|
||||
title:
|
||||
type: string
|
||||
scope:
|
||||
type: string
|
||||
includes:
|
||||
type: array
|
||||
items:
|
||||
type: string
|
||||
constraints:
|
||||
type: array
|
||||
items:
|
||||
type: object
|
||||
additionalProperties: true
|
||||
33
infospace/schemas/standard.schema.yaml
Normal file
33
infospace/schemas/standard.schema.yaml
Normal file
@@ -0,0 +1,33 @@
|
||||
$schema: https://json-schema.org/draft/2020-12/schema
|
||||
$id: https://info-tech-canon.local/schemas/standard.schema.yaml
|
||||
title: InfoTechCanon Standard
|
||||
type: object
|
||||
required:
|
||||
- id
|
||||
- title
|
||||
- type
|
||||
- status
|
||||
properties:
|
||||
id:
|
||||
type: string
|
||||
title:
|
||||
type: string
|
||||
type:
|
||||
enum:
|
||||
- standard
|
||||
- specialized-standard
|
||||
- model
|
||||
- kernel
|
||||
status:
|
||||
type: string
|
||||
version:
|
||||
type: string
|
||||
imports:
|
||||
type: array
|
||||
items:
|
||||
type: string
|
||||
owned_concepts:
|
||||
type: array
|
||||
items:
|
||||
type: string
|
||||
additionalProperties: true
|
||||
38
infospace/schemas/workplan.schema.yaml
Normal file
38
infospace/schemas/workplan.schema.yaml
Normal file
@@ -0,0 +1,38 @@
|
||||
$schema: https://json-schema.org/draft/2020-12/schema
|
||||
$id: https://info-tech-canon.local/schemas/workplan.schema.yaml
|
||||
title: State Hub Workplan
|
||||
type: object
|
||||
required:
|
||||
- id
|
||||
- type
|
||||
- title
|
||||
- domain
|
||||
- repo
|
||||
- status
|
||||
properties:
|
||||
id:
|
||||
type: string
|
||||
type:
|
||||
const: workplan
|
||||
title:
|
||||
type: string
|
||||
domain:
|
||||
type: string
|
||||
repo:
|
||||
type: string
|
||||
status:
|
||||
enum:
|
||||
- proposed
|
||||
- ready
|
||||
- active
|
||||
- blocked
|
||||
- backlog
|
||||
- finished
|
||||
- archived
|
||||
depends_on_workplans:
|
||||
type: array
|
||||
items:
|
||||
type: string
|
||||
state_hub_workstream_id:
|
||||
type: string
|
||||
additionalProperties: true
|
||||
Reference in New Issue
Block a user