Skip to content

Latest commit

 

History

History
35 lines (30 loc) · 1.56 KB

document.schema.md

File metadata and controls

35 lines (30 loc) · 1.56 KB

Document Schema

https://ns.adobe.com/xdm/external/activity-streams-2/document

Represents a document of any kind. Refer to the Activity Streams 2.0 Core specification for a complete description of the document type.

Abstract Extensible Status Identifiable Custom Properties Additional Properties Defined In
Can be instantiated No Experimental No Forbidden Permitted external/activity-streams-2/document.schema.json

Document Example

{
  "@context": {
    "activitystreams": "http://www.w3.org/ns/activitystreams#"
  },
  "@type": "http://www.w3.org/ns/activitystreams#Image",
  "activitystreams:name": "Cat Jumping on Wagon",
  "activitystreams:url": [
    {
      "@type": "http://www.w3.org/ns/activitystreams#Link",
      "activitystreams:href": "http://example.org/image.jpeg",
      "activitystreams:mediaType": "image/jpeg"
    },
    {
      "@type": "http://www.w3.org/ns/activitystreams#Link",
      "activitystreams:href": "http://example.org/image.png",
      "activitystreams:mediaType": "image/png"
    }
  ]
}