Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
18dc9be
Align JSON Schema with amended Metadata Spec
sthagen Jan 20, 2026
c627ee3
Seed version from contribution tree as baseline for the changes
sthagen Jan 20, 2026
4bee467
Ensure that the format constraints are validated as intended
sthagen Jan 27, 2026
40f182b
Schema fixes (implemented feedback from Jamie Yu)
sthagen Feb 22, 2026
70a9dbd
Prepared a meta-prov version for the next meeting
sthagen Feb 22, 2026
b62f358
Merge branch 'main' into align-json-schema-with-amended-metadata-spec
sthagen Feb 22, 2026
8db5371
Nits: Fixed section number labels for annex a
sthagen Feb 22, 2026
52c4216
Nits: Fixed boilerplate CPSR-coding errors
sthagen Feb 22, 2026
c16270c
Nits: Fixed title case of annex a numbering label
sthagen Feb 22, 2026
862d06a
Added secretary entry on frontpage (for real)
sthagen Feb 22, 2026
cc64ed2
Provided table captions, added some constraints into json schema, and…
sthagen Feb 23, 2026
212e0c5
Removed left-overs from bold fake table captions
sthagen Feb 23, 2026
57825bb
Removed template hints of safety section as real JSON content is alre…
sthagen Feb 23, 2026
e5f5085
Restored descriptions and fourth data row of license type table
sthagen Feb 23, 2026
ff62e65
Removed microformat of names in tables and added missing uid name in …
sthagen Feb 23, 2026
da40932
Added more outlines and amended JSON schema
sthagen Feb 28, 2026
a08e7e6
Table format, kebab-case for enumeration values, and a typo fix in a …
sthagen Apr 5, 2026
4b042ad
Fixed source type to be a URI
sthagen Apr 5, 2026
1e57a63
Fixed typo in JSON schema comment
sthagen Apr 5, 2026
708bf84
Completed schema documentation and fixed some nits.
sthagen Apr 6, 2026
c92238f
Update prov.md
LisaBobbitt Apr 6, 2026
884c0a9
Replaced the too narrow privacy enhancement with a data risk reductio…
sthagen Apr 6, 2026
d8bee8f
Added data risk reducing technology to JSON schema, fixed the paramet…
sthagen Apr 6, 2026
f4090e9
Added instance examples used in the pull request #89
sthagen Apr 6, 2026
7440257
Filled in the missing outlines in the YAML modeling of the JSON schem…
sthagen Apr 6, 2026
d7a6b56
Aligned datetime type for timestamps between all model formulations
sthagen Apr 6, 2026
4c2c9b8
Added content to the source.id field in the minimal example
sthagen Apr 6, 2026
405a658
Removed the sub-provenance with the empty object as value from the op…
sthagen Apr 6, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions work-products/metadata-spec/json/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Data Provenance Metadata Schema in JSON

TBD
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://docs.oasis-open.org/dps/meta/v1.0/schema/data-provenance-configuration.json",
"$dynamicAnchor": "meta",
"$vocabulary": {
"https://json-schema.org/draft/2020-12/vocab/core": true,
"https://json-schema.org/draft/2020-12/vocab/applicator": true,
"https://json-schema.org/draft/2020-12/vocab/unevaluated": true,
"https://json-schema.org/draft/2020-12/vocab/validation": true,
"https://json-schema.org/draft/2020-12/vocab/meta-data": true,
"https://json-schema.org/draft/2020-12/vocab/format-assertion": true,
"https://json-schema.org/draft/2020-12/vocab/content": true
},
"allOf": [
{
"$ref": "https://json-schema.org/draft/2020-12/meta/core"
},
{
"$ref": "https://json-schema.org/draft/2020-12/meta/applicator"
},
{
"$ref": "https://json-schema.org/draft/2020-12/meta/unevaluated"
},
{
"$ref": "https://json-schema.org/draft/2020-12/meta/validation"
},
{
"$ref": "https://json-schema.org/draft/2020-12/meta/meta-data"
},
{
"$ref": "https://json-schema.org/draft/2020-12/meta/format-assertion"
},
{
"$ref": "https://json-schema.org/draft/2020-12/meta/content"
}
]
}
Loading