#' software
#'
#' software
#'
#'
#' @inheritParams common_attributes
#' @param alternateIdentifier A secondary identifier for this entity See [alternateIdentifier()]
#' @param shortName A short name that describes the resource, sometimes a filename. See [shortName()]
#' @param title A brief description of the resource, providing enough detail to differentiate it from other similar resources. See [title()]
#' @param creator The people or organizations who created this resource. See [creator()]
#' @param metadataProvider The people or organizations who created provided documentation and other metadata for this resource. See [metadataProvider()]
#' @param associatedParty Other people or organizations who should be associated with this resource. See [associatedParty()]
#' @param pubDate The publication date of the resource. See [pubDate()]
#' @param language The language in which the resource is written. See [language()]
#' @param series The series from which the resource came. See [series()]
#' @param abstract A brief overview of the resource. See [abstract()]
#' @param keywordSet Keyword information that describes the resource. See [keywordSet()]
#' @param additionalInfo Any extra information pertitent to the resource. See [additionalInfo()]
#' @param intellectualRights Intellectual property rights regarding usage and licensing of this resource. See [intellectualRights()]
#' @param licensed Information identifying a well-known license for the metadata and data See [licensed()]
#' @param distribution Information on how the resource is distributed online and offline See [distribution()]
#' @param coverage Extent of the coverage of the resource. See [coverage()]
#' @param annotation A precisely-defined semantic statement about this resource. See [annotation()]
#' @param implementation Describes the hardware and/or operating system requirements for one implementation of a package. See [implementation()]
#' @param dependency This fields documents any dependencies that this software package in general might have. See [dependency()]
#' @param licenseURL URL where the license can be found See [licenseURL()]
#' @param license Text of the license See [license()]
#' @param version Version of the software being packaged. See [version()]
#' @param references The id of another element in this EML document to be used to here in this context. See [references()]
#'
#' @return a software list object
#'
#' @export
software <- function(alternateIdentifier = NULL,
shortName = NULL,
title = NULL,
creator = NULL,
metadataProvider = NULL,
associatedParty = NULL,
pubDate = NULL,
language = NULL,
series = NULL,
abstract = NULL,
keywordSet = NULL,
additionalInfo = NULL,
intellectualRights = NULL,
licensed = NULL,
distribution = NULL,
coverage = NULL,
annotation = NULL,
implementation = NULL,
dependency = NULL,
licenseURL = NULL,
license = NULL,
version = NULL,
project = NULL,
references = NULL,
id = NULL,
system = NULL,
scope = NULL){
Filter(Negate(is.null),
list(
alternateIdentifier = alternateIdentifier,
shortName = shortName,
title = title,
creator = creator,
metadataProvider = metadataProvider,
associatedParty = associatedParty,
pubDate = pubDate,
language = language,
series = series,
abstract = abstract,
keywordSet = keywordSet,
additionalInfo = additionalInfo,
intellectualRights = intellectualRights,
licensed = licensed,
distribution = distribution,
coverage = coverage,
annotation = annotation,
implementation = implementation,
dependency = dependency,
licenseURL = licenseURL,
license = license,
version = version,
project = project,
references = references,
id = id,
system = system,
scope = scope))}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.