Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
858 changes: 858 additions & 0 deletions cli/schemas/crJSON-schema.json

Large diffs are not rendered by default.

522 changes: 522 additions & 0 deletions docs/crjson-format.adoc

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions sdk/src/claim_generator_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ pub struct ClaimGeneratorInfo {
/// hashed URI to the icon (either embedded or remote)
#[serde(skip_serializing_if = "Option::is_none")]
pub icon: Option<UriOrResource>,
/// A human readable string of the OS the claim generator is running on
#[serde(skip_serializing_if = "Option::is_none")]
/// A human readable string of the OS the claim generator is running on.
/// CrJSON schema uses `operating_system`; C2PA CBOR may use `schema.org.SoftwareApplication.operatingSystem`.
#[serde(alias = "schema.org.SoftwareApplication.operatingSystem", skip_serializing_if = "Option::is_none")]
pub operating_system: Option<String>,
// Any other values that are not part of the standard
#[serde(flatten)]
Expand Down
Loading