Skip to content

Atom Publishing Protocol Reference

Extends Atom feeds with elements for content management workflows.

Namespace URIhttp://www.w3.org/2007/app
SpecificationThe Atom Publishing Protocol (RFC 5023)
Prefix<app:*>
Available inAtom
Propertyapp

Types

ts
export namespace AppNs {
  export type Control = {
    draft?: boolean
  }

  export type Entry<TDate extends DateLike> = {
    edited?: TDate
    control?: Control
  }
}