Sha256: dfd39e03f87f20009229de58a089b5f8b7ccc872b0d8b0bf9dccc44a27689297
Contents?: true
Size: 1.08 KB
Versions: 9
Compression:
Stored size: 1.08 KB
Contents
{ "$schema": "http://json-schema.org/draft-06/schema#", "id": "http://cocina.sul.stanford.edu/schemas/Sequence", "title": "Resource Sequence", "description": "A sequence or ordering of resources within a Collection or Object.", "type": "object", "required": ["@type", "label", "startMember", "members"], "properties": { "@context": { "description": "URI for the JSON-LD context definitions.", "type": "string" }, "@type": { "description": "The type of Sequence.", "type": "string", "enum": ["http://cocina.sul.stanford.edu/models/sequence.jsonld", "http://cocina.sul.stanford.edu/models/primary-sequence.jsonld" ] }, "label": { "description": "Label for the sequence or ordering.", "type": "string" }, "startMember": { "description": "Identifier for the first member of the sequence.", "type": "string" }, "members": { "description": "Identifiers for Members in their stated Order for the Sequence.", "type": "array", "items": { "type": "string" } } } }
Version data entries
9 entries across 9 versions & 1 rubygems