searches the current version of every section · esc to close

27.03 Artifact Info

#todo

interface ArtifactAttachments {
	info: ArtifactInfoAttachment[],
	// ...
}
interface ArtifactInfoAttachment {
	kind: string,
	content: ArtifactInfoContent,
	contentLink: string
}
  • kind MUST be of type string, presenting how the impmentation should load and presenting the info stored or linked to the artifact
  • content MUST be of type ArtifactInfoContent as defined in [link], presenting the info store in the artifact.
  • contentLink MUST be of type string of the URL to the externieared stored ArtifactInfo JSON object as defined in [link], presenting the info link to the artifact. When info data is provided, infoLink MUST be ignored.