Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added new description field to project #191

Merged
merged 1 commit into from
Nov 4, 2021
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
3 changes: 3 additions & 0 deletions examples/full.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@
<localization lang="en">
<name>The best project of all time</name>
<excerpt>This project is located in someplace and has a great view.</excerpt>
<description>
<![CDATA[<p>This project is beautiful</p>]]>
</description>
<attachments>
<image>
<url>http://www.someorg.com/dg546jdl</url>
Expand Down
5 changes: 5 additions & 0 deletions schema/schema.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -1418,6 +1418,11 @@
<xs:documentation>A short extract from description, location and equipment.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="description" type="xs:string" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Main description for project.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="attachments" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Sequence links, files, embeds and media.</xs:documentation>
Expand Down