-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema_changes.yaml
More file actions
83 lines (83 loc) · 2.25 KB
/
schema_changes.yaml
File metadata and controls
83 lines (83 loc) · 2.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
$schema: http://json-schema.org/draft-07/schema#
title: EXPRESS Schema Changes
description: Records modifications to EXPRESS schema structure across editions
type: object
required:
- schema
- editions
properties:
schema:
type: string
description: Name of the EXPRESS schema
editions:
type: array
description: Array of edition changes
items:
$ref: '#/definitions/edition_change'
definitions:
edition_change:
type: object
description: Changes made to the schema in a specific edition
required:
- version
properties:
version:
type: string
description: Version number for this change edition
pattern: '^[1-9][0-9]*$'
description:
type: string
description: >-
Multi-line string describing the changes made in this edition.
Provides comprehensive overview of what changed and why.
additions:
type: array
description: Array of added elements
items:
$ref: '#/definitions/item_change'
modifications:
type: array
description: Array of modified elements
items:
$ref: '#/definitions/item_change'
removals:
type: array
description: Array of removed elements
items:
$ref: '#/definitions/item_change'
item_change:
type: object
description: Represents a specific schema element change
required:
- type
- name
properties:
type:
type: string
description: Type of the EXPRESS construct
enum:
- ENTITY
- TYPE
- FUNCTION
- RULE
- PROCEDURE
- CONSTANT
- REFERENCE_FROM
- USE_FROM
name:
type: string
description: Name of the EXPRESS construct
description:
type: array
description: >-
Array of strings describing the change. Each string represents
a description for a single change in the named target.
items:
type: string
interfaced_items:
type: array
description: >-
For USE_FROM or REFERENCE_FROM, list of specific items referenced
or used. Not needed when in deletions.
items:
type: string