Skip to content

Commit df17fd0

Browse files
committed
Regenerated all
1 parent b4f86e0 commit df17fd0

11 files changed

+206
-44
lines changed

examples/document.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ A model for documents.
3030
<table>
3131
<tr>
3232
<td><b>sections</b></td>
33-
<td><a href="#list">List</a></td>
33+
<td><a href="#section">Section</a></td>
3434
<td><i>The sections of the document</i></td>
3535
</tr>
3636

@@ -55,7 +55,7 @@ A model of a section of the <a href="#document">Document</a>. Will contain one <
5555
<table>
5656
<tr>
5757
<td><b>paragraphs</b></td>
58-
<td><a href="#list">List</a></td>
58+
<td><a href="#paragraph">Paragraph</a></td>
5959
<td><i>The paragraphs</i></td>
6060
</tr>
6161

examples/document.rst

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ Allowed field Data Type Description
1515

1616
**Allowed children**
1717

18-
=============== ================ ============================
19-
Allowed child Data Type Description
20-
=============== ================ ============================
21-
**sections** `List <#list>`__ The sections of the document
22-
=============== ================ ============================
18+
=============== ====================== ============================
19+
Allowed child Data Type Description
20+
=============== ====================== ============================
21+
**sections** `Section <#section>`__ The sections of the document
22+
=============== ====================== ============================
2323

2424
=======
2525
Section
@@ -36,11 +36,11 @@ Allowed field Data Type Description
3636

3737
**Allowed children**
3838

39-
=============== ================ ==============
40-
Allowed child Data Type Description
41-
=============== ================ ==============
42-
**paragraphs** `List <#list>`__ The paragraphs
43-
=============== ================ ==============
39+
=============== ========================== ==============
40+
Allowed child Data Type Description
41+
=============== ========================== ==============
42+
**paragraphs** `Paragraph <#paragraph>`__ The paragraphs
43+
=============== ========================== ==============
4444

4545
=========
4646
Paragraph

examples/document.specification.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
},
1818
"allowed_children": {
1919
"sections": {
20-
"type": "List",
20+
"type": "Section",
2121
"description": "The sections of the document"
2222
}
2323
}
@@ -32,7 +32,7 @@
3232
},
3333
"allowed_children": {
3434
"paragraphs": {
35-
"type": "List",
35+
"type": "Paragraph",
3636
"description": "The paragraphs"
3737
}
3838
}

examples/document.specification.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" ?>
2-
<root>
2+
<modelspec>
33
<Document>
44
<definition>A model for documents.</definition>
55
<allowed_parameters>
@@ -18,7 +18,7 @@
1818
</allowed_parameters>
1919
<allowed_children>
2020
<sections>
21-
<type>List</type>
21+
<type>Section</type>
2222
<description>The sections of the document</description>
2323
</sections>
2424
</allowed_children>
@@ -33,7 +33,7 @@
3333
</allowed_parameters>
3434
<allowed_children>
3535
<paragraphs>
36-
<type>List</type>
36+
<type>Paragraph</type>
3737
<description>The paragraphs</description>
3838
</paragraphs>
3939
</allowed_children>
@@ -47,4 +47,4 @@
4747
</contents>
4848
</allowed_parameters>
4949
</Paragraph>
50-
</root>
50+
</modelspec>

examples/document.specification.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Document:
1212
description: International Standard Book Number
1313
allowed_children:
1414
sections:
15-
type: List
15+
type: Section
1616
description: The sections of the document
1717
Section:
1818
definition: A model of a section of the :class:`Document`. Will contain one :class:`Paragraph`
@@ -24,7 +24,7 @@ Section:
2424
description: The id of the section
2525
allowed_children:
2626
paragraphs:
27-
type: List
27+
type: Paragraph
2828
description: The paragraphs
2929
Paragraph:
3030
definition: A model of a paragraph.

examples/neuroml2/NeuroML2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Some description...
3737

3838
<tr>
3939
<td><b>networks</b></td>
40-
<td><a href="#list">List</a></td>
40+
<td><a href="#network">Network</a></td>
4141
<td><i>The networks present</i></td>
4242
</tr>
4343

@@ -181,7 +181,7 @@ Some description...
181181
<table>
182182
<tr>
183183
<td><b>populations</b></td>
184-
<td><a href="#list">List</a></td>
184+
<td><a href="#population">Population</a></td>
185185
<td><i>the pops in the net</i></td>
186186
</tr>
187187

examples/neuroml2/NeuroML2.rst

Lines changed: 52 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,52 @@ Allowed field Data Type Description
1414

1515
**Allowed children**
1616

17-
=============== ================ ====================
18-
Allowed child Data Type Description
19-
=============== ================ ====================
20-
**networks** `List <#list>`__ The networks present
21-
=============== ================ ====================
17+
======================= ============================================ ====================
18+
Allowed child Data Type Description
19+
======================= ============================================ ====================
20+
**izhikevich2007Cells** `Izhikevich2007Cell <#izhikevich2007cell>`__
21+
**pulseGenerators** `PulseGenerator <#pulsegenerator>`__
22+
**networks** `Network <#network>`__ The networks present
23+
======================= ============================================ ====================
24+
25+
==================
26+
Izhikevich2007Cell
27+
==================
28+
Some description...
29+
30+
**Allowed parameters**
31+
32+
=============== =========== =====================
33+
Allowed field Data Type Description
34+
=============== =========== =====================
35+
**id** str The id of the cell...
36+
**C** str
37+
**v0** str
38+
**k** str
39+
**vr** str
40+
**vt** str
41+
**vpeak** str
42+
**a** str
43+
**b** str
44+
**c** str
45+
**d** str
46+
=============== =========== =====================
47+
48+
==============
49+
PulseGenerator
50+
==============
51+
Some description...
52+
53+
**Allowed parameters**
54+
55+
=============== =========== ============================
56+
Allowed field Data Type Description
57+
=============== =========== ============================
58+
**id** str The id of the pulseGenerator
59+
**delay** str the delay
60+
**duration** str the duration
61+
**amplitude** str the amplitude
62+
=============== =========== ============================
2263

2364
=======
2465
Network
@@ -35,11 +76,12 @@ Allowed field Data Type Description
3576

3677
**Allowed children**
3778

38-
=============== ================ ===================
39-
Allowed child Data Type Description
40-
=============== ================ ===================
41-
**populations** `List <#list>`__ the pops in the net
42-
=============== ================ ===================
79+
================== ================================== ===================
80+
Allowed child Data Type Description
81+
================== ================================== ===================
82+
**populations** `Population <#population>`__ the pops in the net
83+
**explicitInputs** `ExplicitInput <#explicitinput>`__
84+
================== ================================== ===================
4385

4486
==========
4587
Population

examples/neuroml2/NeuroML2.specification.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"description": ""
2222
},
2323
"networks": {
24-
"type": "List",
24+
"type": "Network",
2525
"description": "The networks present"
2626
}
2727
}
@@ -106,7 +106,7 @@
106106
},
107107
"allowed_children": {
108108
"populations": {
109-
"type": "List",
109+
"type": "Population",
110110
"description": "the pops in the net"
111111
},
112112
"explicitInputs": {

examples/neuroml2/NeuroML2.specification.xml

Lines changed: 99 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" ?>
2-
<root>
2+
<modelspec>
33
<NeuroML>
44
<definition>Some description...</definition>
55
<allowed_parameters>
@@ -13,12 +13,90 @@
1313
</version>
1414
</allowed_parameters>
1515
<allowed_children>
16+
<izhikevich2007Cells>
17+
<type>Izhikevich2007Cell</type>
18+
<description/>
19+
</izhikevich2007Cells>
20+
<pulseGenerators>
21+
<type>PulseGenerator</type>
22+
<description/>
23+
</pulseGenerators>
1624
<networks>
17-
<type>List</type>
25+
<type>Network</type>
1826
<description>The networks present</description>
1927
</networks>
2028
</allowed_children>
2129
</NeuroML>
30+
<Izhikevich2007Cell>
31+
<definition>Some description...</definition>
32+
<allowed_parameters>
33+
<id>
34+
<type>str</type>
35+
<description>The id of the cell...</description>
36+
</id>
37+
<C>
38+
<type>str</type>
39+
<description/>
40+
</C>
41+
<v0>
42+
<type>str</type>
43+
<description/>
44+
</v0>
45+
<k>
46+
<type>str</type>
47+
<description/>
48+
</k>
49+
<vr>
50+
<type>str</type>
51+
<description/>
52+
</vr>
53+
<vt>
54+
<type>str</type>
55+
<description/>
56+
</vt>
57+
<vpeak>
58+
<type>str</type>
59+
<description/>
60+
</vpeak>
61+
<a>
62+
<type>str</type>
63+
<description/>
64+
</a>
65+
<b>
66+
<type>str</type>
67+
<description/>
68+
</b>
69+
<c>
70+
<type>str</type>
71+
<description/>
72+
</c>
73+
<d>
74+
<type>str</type>
75+
<description/>
76+
</d>
77+
</allowed_parameters>
78+
</Izhikevich2007Cell>
79+
<PulseGenerator>
80+
<definition>Some description...</definition>
81+
<allowed_parameters>
82+
<id>
83+
<type>str</type>
84+
<description>The id of the pulseGenerator</description>
85+
</id>
86+
<delay>
87+
<type>str</type>
88+
<description>the delay</description>
89+
</delay>
90+
<duration>
91+
<type>str</type>
92+
<description>the duration</description>
93+
</duration>
94+
<amplitude>
95+
<type>str</type>
96+
<description>the amplitude</description>
97+
</amplitude>
98+
</allowed_parameters>
99+
</PulseGenerator>
22100
<Network>
23101
<definition>Some description...</definition>
24102
<allowed_parameters>
@@ -29,9 +107,13 @@
29107
</allowed_parameters>
30108
<allowed_children>
31109
<populations>
32-
<type>List</type>
110+
<type>Population</type>
33111
<description>the pops in the net</description>
34112
</populations>
113+
<explicitInputs>
114+
<type>ExplicitInput</type>
115+
<description/>
116+
</explicitInputs>
35117
</allowed_children>
36118
</Network>
37119
<Population>
@@ -51,4 +133,17 @@
51133
</size>
52134
</allowed_parameters>
53135
</Population>
54-
</root>
136+
<ExplicitInput>
137+
<definition>Some description...</definition>
138+
<allowed_parameters>
139+
<target>
140+
<type>str</type>
141+
<description>the target of the input</description>
142+
</target>
143+
<input>
144+
<type>str</type>
145+
<description>the input, e.g. pulseGenerator</description>
146+
</input>
147+
</allowed_parameters>
148+
</ExplicitInput>
149+
</modelspec>

examples/neuroml2/NeuroML2.specification.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ NeuroML:
1515
type: PulseGenerator
1616
description: ''
1717
networks:
18-
type: List
18+
type: Network
1919
description: The networks present
2020
Izhikevich2007Cell:
2121
definition: Some description...
@@ -76,7 +76,7 @@ Network:
7676
description: The id of the network
7777
allowed_children:
7878
populations:
79-
type: List
79+
type: Population
8080
description: the pops in the net
8181
explicitInputs:
8282
type: ExplicitInput

0 commit comments

Comments
 (0)