Skip to content

Commit 4473380

Browse files
committed
Update golden files
1 parent 70d9995 commit 4473380

File tree

6 files changed

+55
-55
lines changed

6 files changed

+55
-55
lines changed

testdata/TestSchema_address.golden

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ An address similar to http://microformats.org/wiki/h-card
44

55
| Property | Type | Required | Description |
66
|--------------------|--------|----------|-------------|
7-
| `country-name` | string | **true** | |
8-
| `locality` | string | **true** | |
9-
| `region` | string | **true** | |
10-
| `extended-address` | string | false | |
11-
| `post-office-box` | string | false | |
12-
| `postal-code` | string | false | |
13-
| `street-address` | string | false | |
7+
| `country-name` | string | **Yes** | |
8+
| `locality` | string | **Yes** | |
9+
| `region` | string | **Yes** | |
10+
| `extended-address` | string | No | |
11+
| `post-office-box` | string | No | |
12+
| `postal-code` | string | No | |
13+
| `street-address` | string | No | |
1414

testdata/TestSchema_arrays.golden

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ A representation of a person, company, organization, or place
22

33
## Properties
44

5-
| Property | Type | Required | Description |
6-
|--------------|-------|----------|-------------|
7-
| `fruits` | array | false | |
8-
| `vegetables` | array | false | |
5+
| Property | Type | Required | Description |
6+
|--------------|----------------------|----------|-------------|
7+
| `fruits` | [array](#fruits) | No | |
8+
| `vegetables` | [array](#vegetables) | No | |
99

testdata/TestSchema_basic.golden

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
| Property | Type | Required | Description |
66
|-------------|---------|----------|-----------------------------------------------------------|
7-
| `age` | integer | false | Age in years which must be equal to or greater than zero. |
8-
| `firstName` | string | false | The person's first name. |
9-
| `lastName` | string | false | The person's last name. |
7+
| `age` | integer | No | Age in years which must be equal to or greater than zero. |
8+
| `firstName` | string | No | The person's first name. |
9+
| `lastName` | string | No | The person's last name. |
1010

testdata/TestSchema_calendar.golden

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ A representation of an event
44

55
| Property | Type | Required | Description |
66
|---------------|--------|----------|---------------------|
7-
| `dtstart` | string | **true** | Event starting time |
8-
| `summary` | string | **true** | |
9-
| `category` | string | false | |
10-
| `description` | string | false | |
11-
| `dtend` | string | false | Event ending time |
12-
| `duration` | string | false | Event duration |
13-
| `geo` | | false | |
14-
| `location` | string | false | |
15-
| `rdate` | string | false | Recurrence date |
16-
| `rrule` | string | false | Recurrence rule |
17-
| `url` | string | false | |
7+
| `dtstart` | string | **Yes** | Event starting time |
8+
| `summary` | string | **Yes** | |
9+
| `category` | string | No | |
10+
| `description` | string | No | |
11+
| `dtend` | string | No | Event ending time |
12+
| `duration` | string | No | Event duration |
13+
| `geo` | | No | |
14+
| `location` | string | No | |
15+
| `rdate` | string | No | Recurrence date |
16+
| `rrule` | string | No | Recurrence rule |
17+
| `url` | string | No | |
1818

testdata/TestSchema_card.golden

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -2,53 +2,53 @@ A representation of a person, company, organization, or place
22

33
## Properties
44

5-
| Property | Type | Required | Description |
6-
|-------------------|------------------|----------|----------------|
7-
| `familyName` | string | **true** | |
8-
| `givenName` | string | **true** | |
9-
| `additionalName` | array | false | |
10-
| `adr` | | false | |
11-
| `bday` | string | false | |
12-
| `email` | [object](#email) | false | |
13-
| `fn` | string | false | Formatted Name |
14-
| `geo` | | false | |
15-
| `honorificPrefix` | array | false | |
16-
| `honorificSuffix` | array | false | |
17-
| `logo` | string | false | |
18-
| `nickname` | string | false | |
19-
| `org` | [object](#org) | false | |
20-
| `photo` | string | false | |
21-
| `role` | string | false | |
22-
| `sound` | string | false | |
23-
| `tel` | [object](#tel) | false | |
24-
| `title` | string | false | |
25-
| `tz` | string | false | |
26-
| `url` | string | false | |
5+
| Property | Type | Required | Description |
6+
|-------------------|---------------------------|----------|----------------|
7+
| `familyName` | string | **Yes** | |
8+
| `givenName` | string | **Yes** | |
9+
| `additionalName` | [array](#additionalname) | No | |
10+
| `adr` | | No | |
11+
| `bday` | string | No | |
12+
| `email` | [object](#email) | No | |
13+
| `fn` | string | No | Formatted Name |
14+
| `geo` | | No | |
15+
| `honorificPrefix` | [array](#honorificprefix) | No | |
16+
| `honorificSuffix` | [array](#honorificsuffix) | No | |
17+
| `logo` | string | No | |
18+
| `nickname` | string | No | |
19+
| `org` | [object](#org) | No | |
20+
| `photo` | string | No | |
21+
| `role` | string | No | |
22+
| `sound` | string | No | |
23+
| `tel` | [object](#tel) | No | |
24+
| `title` | string | No | |
25+
| `tz` | string | No | |
26+
| `url` | string | No | |
2727

2828
## email
2929

3030
### Properties
3131

3232
| Property | Type | Required | Description |
3333
|----------|--------|----------|-------------|
34-
| `type` | string | false | |
35-
| `value` | string | false | |
34+
| `type` | string | No | |
35+
| `value` | string | No | |
3636

3737
## org
3838

3939
### Properties
4040

4141
| Property | Type | Required | Description |
4242
|--------------------|--------|----------|-------------|
43-
| `organizationName` | string | false | |
44-
| `organizationUnit` | string | false | |
43+
| `organizationName` | string | No | |
44+
| `organizationUnit` | string | No | |
4545

4646
## tel
4747

4848
### Properties
4949

5050
| Property | Type | Required | Description |
5151
|----------|--------|----------|-------------|
52-
| `type` | string | false | |
53-
| `value` | string | false | |
52+
| `type` | string | No | |
53+
| `value` | string | No | |
5454

testdata/TestSchema_geographical-location.golden

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ A geographical coordinate.
66

77
| Property | Type | Required | Description |
88
|-------------|--------|----------|-------------|
9-
| `latitude` | number | **true** | |
10-
| `longitude` | number | **true** | |
9+
| `latitude` | number | **Yes** | |
10+
| `longitude` | number | **Yes** | |
1111

0 commit comments

Comments
 (0)