Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions docs/metroninfo/documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,10 @@ Trade Paperback and other collections can sometimes have a name for individual T

Number of the book in the series which can accept alphanumeric values like `1MU`.

### AlternativeNumber

An optional alternative number for the book. This can be useful for issues that have both a legacy and a relaunch numbering, for example.

### Stories

Contains information about the stories contained within an issues.
Expand Down Expand Up @@ -303,6 +307,20 @@ So, for simplicity's sake we've settled on the following values (with ages given
- **Explicit** - Contains material that is more extreme than material found in R rating movies.
- **Adult** - Likely pornographic in nature

### CommunityRating

The community's average rating for the book.

It has the following children elements:

- #### AverageRating

The average rating value, which must be a decimal value between `0` and `5.0`.

- #### RatingCount

Optional. The number of ratings used to determine the `AverageRating` value.

### URLs

URLs pointing to reference websites for the book.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
sidebar_position: 25
title: Version 1.0
title: Version 1.1
---

[Source](https://github.com/Metron-Project/metroninfo/blob/master/schema/v1.0/MetronInfo.xsd) on GitHub
[Source](https://github.com/Metron-Project/metroninfo/blob/master/schema/v1.1/MetronInfo.xsd) on GitHub

```mdx-code-block
import CodeBlock from '@theme/CodeBlock';
import Schema from '!!raw-loader!@site/docs/metroninfo/_remote/schema/v1.0/MetronInfo.xsd';
import Schema from '!!raw-loader!@site/docs/metroninfo/_remote/schema/v1.1/MetronInfo.xsd';

<CodeBlock className="language-xml">{Schema}</CodeBlock>
```
2 changes: 1 addition & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const config = {
name: 'metroninfo', // used by CLI, must be path safe
sourceBaseUrl: 'https://raw.githubusercontent.com/Metron-Project/metroninfo/master/', // the base url for the markdown (gets prepended to all of the documents when fetching)
outDir: 'docs/metroninfo/_remote', // the base directory to output to.
documents: ['schema/v1.0/MetronInfo.xsd',], // the file names to download
documents: ['schema/v1.1/MetronInfo.xsd',], // the file names to download
noRuntimeDownloads: true,
performCleanup: false,
},
Expand Down