Skip to content

Commit

Permalink
feat(Claim): Draft Claim specification
Browse files Browse the repository at this point in the history
  • Loading branch information
rgieseke committed Apr 13, 2021
1 parent 379cf19 commit 43833b4
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions schema/Claim.schema.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
title: Claim
'@id': stencila:Claim
extends: Entity
role: secondary
status: unstable
description: A claim represents specific reviewable facts or statements.
$comment: |
It is usually displayed as a block element and can have a separate title.
In the context of a scholarly article this could be a theorem or proof.
See also
- [Schema.org `Claim`](https://schema.org/Claim)
- [JATS `<statement>`](https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/statement.html)
properties:
title:
'@id': stencila:title
description: Title of the claim.
type: string
claimType:
'@id': stencila:claimType
description: Kind of the claim.
type: string
enum:
- Claim
- Theorem
- Lemma
- Proof
- Postulate
- Hypothesis
- Proposition
- Corollary
content:
'@id': stencila:content
description: Content of the claim, usually a paragraph.
type: array
items:
$ref: BlockContent
$comment: |
Most claims will have a single paragraph but could have multiple
paragraphs, tables and even figures.
required:
- content

0 comments on commit 43833b4

Please sign in to comment.