Skip to content

Commit 595a829

Browse files
committed
Change docs reference
1 parent e87768c commit 595a829

12 files changed

+24
-24
lines changed

docs/rules/0131/request-path-behavior.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ redirect_from:
1212
# Get methods: Field behavior
1313

1414
This rule enforces that all `Get` standard methods have
15-
`aep.api.field_behavior` set to `REQUIRED` on their `string path` field, as
15+
`aep.api.field_behavior` set to `FIELD_BEHAVIOR_REQUIRED` on their `string path` field, as
1616
mandated in [AEP-131][].
1717

1818
## Details
1919

2020
This rule looks at any message matching `Get*Request` and complains if the
2121
`path` field does not have a `aep.api.field_behavior` annotation with a
22-
value of `REQUIRED`.
22+
value of `FIELD_BEHAVIOR_REQUIRED`.
2323

2424
## Examples
2525

docs/rules/0132/request-parent-behavior.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ redirect_from:
1212
# List methods: Field behavior
1313

1414
This rule enforces that all `List` standard methods have
15-
`aep.api.field_behavior` set to `REQUIRED` on their `string parent` field,
15+
`aep.api.field_behavior` set to `FIELD_BEHAVIOR_REQUIRED` on their `string parent` field,
1616
as mandated in [AEP-132][].
1717

1818
## Details
1919

2020
This rule looks at any message matching `List*Request` and complains if the
2121
`parent` field does not have a `aep.api.field_behavior` annotation with a
22-
value of `REQUIRED`.
22+
value of `FIELD_BEHAVIOR_REQUIRED`.
2323

2424
## Examples
2525

docs/rules/0133/request-parent-behavior.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ redirect_from:
1212
# Create methods: Field behavior
1313

1414
This rule enforces that all `Create` standard methods have
15-
`aep.api.field_behavior` set to `REQUIRED` on their `string parent` field,
15+
`aep.api.field_behavior` set to `FIELD_BEHAVIOR_REQUIRED` on their `string parent` field,
1616
as mandated in [AEP-133][].
1717

1818
## Details
1919

2020
This rule looks at any message matching `Create*Request` and complains if the
2121
`parent` field does not have a `aep.api.field_behavior` annotation with a
22-
value of `REQUIRED`.
22+
value of `FIELD_BEHAVIOR_REQUIRED`.
2323

2424
## Examples
2525

docs/rules/0133/request-resource-behavior.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ redirect_from:
1212
# Create methods: Field behavior
1313

1414
This rule enforces that all `Create` standard methods have
15-
`aep.api.field_behavior` set to `REQUIRED` on the field representing the
15+
`aep.api.field_behavior` set to `FIELD_BEHAVIOR_REQUIRED` on the field representing the
1616
resource, as mandated in [AEP-133][].
1717

1818
## Details
1919

2020
This rule looks at any message matching `Create*Request` and complains if the
2121
resource field does not have a `aep.api.field_behavior` annotation with a
22-
value of `REQUIRED`.
22+
value of `FIELD_BEHAVIOR_REQUIRED`.
2323

2424
## Examples
2525

docs/rules/0135/request-path-behavior.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ redirect_from:
1212
# Delete methods: Field behavior
1313

1414
This rule enforces that all `Delete` standard methods have
15-
`aep.api.field_behavior` set to `REQUIRED` on their `string path` field, as
15+
`aep.api.field_behavior` set to `FIELD_BEHAVIOR_REQUIRED` on their `string path` field, as
1616
mandated in [AEP-135][].
1717

1818
## Details
1919

2020
This rule looks at any message matching `Delete*Request` and complains if the
2121
`path` field does not have a `aep.api.field_behavior` annotation with a
22-
value of `REQUIRED`.
22+
value of `FIELD_BEHAVIOR_REQUIRED`.
2323

2424
## Examples
2525

docs/rules/0162/commit-request-name-behavior.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ redirect_from:
1212
# Commit requests: Name field behavior
1313

1414
This rule enforces that all `Commit` requests have
15-
`aep.api.field_behavior` set to `REQUIRED` on their `string name` field, as
15+
`aep.api.field_behavior` set to `FIELD_BEHAVIOR_REQUIRED` on their `string name` field, as
1616
mandated in [AEP-162][].
1717

1818
## Details
1919

2020
This rule looks at any message matching `Commit*Request` and complains if the
2121
`name` field does not have a `aep.api.field_behavior` annotation with a
22-
value of `REQUIRED`.
22+
value of `FIELD_BEHAVIOR_REQUIRED`.
2323

2424
## Examples
2525

docs/rules/0162/delete-revision-request-name-behavior.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ redirect_from:
1212
# Delete Revision requests: Name field behavior
1313

1414
This rule enforces that all Delete Revision requests have
15-
`aep.api.field_behavior` set to `REQUIRED` on their `string name` field, as
15+
`aep.api.field_behavior` set to `FIELD_BEHAVIOR_REQUIRED` on their `string name` field, as
1616
mandated in [AEP-162][].
1717

1818
## Details
1919

2020
This rule looks at any message matching `Delete*RevisionRequest` and complains if the
2121
`name` field does not have a `aep.api.field_behavior` annotation with a
22-
value of `REQUIRED`.
22+
value of `FIELD_BEHAVIOR_REQUIRED`.
2323

2424
## Examples
2525

docs/rules/0162/rollback-request-name-behavior.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ redirect_from:
1212
# Rollback requests: Name field behavior
1313

1414
This rule enforces that all `Rollback` requests have
15-
`aep.api.field_behavior` set to `REQUIRED` on their `string name` field, as
15+
`aep.api.field_behavior` set to `FIELD_BEHAVIOR_REQUIRED` on their `string name` field, as
1616
mandated in [AEP-162][].
1717

1818
## Details
1919

2020
This rule looks at any message matching `Rollback*Request` and complains if the
2121
`name` field does not have a `aep.api.field_behavior` annotation with a
22-
value of `REQUIRED`.
22+
value of `FIELD_BEHAVIOR_REQUIRED`.
2323

2424
## Examples
2525

docs/rules/0162/rollback-request-revision-id-behavior.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ redirect_from:
1212
# Rollback requests: Revision ID field behavior
1313

1414
This rule enforces that all `Rollback` requests have
15-
`aep.api.field_behavior` set to `REQUIRED` on their `string revision_id` field, as
15+
`aep.api.field_behavior` set to `FIELD_BEHAVIOR_REQUIRED` on their `string revision_id` field, as
1616
mandated in [AEP-162][].
1717

1818
## Details
1919

2020
This rule looks at any message matching `Rollback*Request` and complains if the
2121
`revision_id` field does not have a `aep.api.field_behavior` annotation with a
22-
value of `REQUIRED`.
22+
value of `FIELD_BEHAVIOR_REQUIRED`.
2323

2424
## Examples
2525

docs/rules/0162/tag-revision-request-name-behavior.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ redirect_from:
1212
# Tag Revision requests: Name field behavior
1313

1414
This rule enforces that all Tag Revision requests have
15-
`aep.api.field_behavior` set to `REQUIRED` on their `string name` field, as
15+
`aep.api.field_behavior` set to `FIELD_BEHAVIOR_REQUIRED` on their `string name` field, as
1616
mandated in [AEP-162][].
1717

1818
## Details
1919

2020
This rule looks at any message matching `Tag*RevisionRequest` and complains if the
2121
`name` field does not have a `aep.api.field_behavior` annotation with a
22-
value of `REQUIRED`.
22+
value of `FIELD_BEHAVIOR_REQUIRED`.
2323

2424
## Examples
2525

0 commit comments

Comments
 (0)