Skip to content

Commit

Permalink
Fix(SCIMMY.Types.SchemaDefinition): remove direction from 'externalId…
Browse files Browse the repository at this point in the history
…' common attribute
  • Loading branch information
sleelin committed Feb 24, 2025
1 parent 0cf95a5 commit f321be3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/types/definition.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export class SchemaDefinition {
this.attributes = [
new Attribute("reference", "schemas", {shadow: true, multiValued: true, referenceTypes: ["uri"]}),
new Attribute("string", "id", {shadow: true, direction: "out", returned: "always", required: true, mutable: false, caseExact: true, uniqueness: "global"}),
new Attribute("string", "externalId", {shadow: true, direction: "in", caseExact: true}),
new Attribute("string", "externalId", {shadow: true, caseExact: true}),
new Attribute("complex", "meta", {shadow: true, required: true, mutable: false}, [
new Attribute("string", "resourceType", {required: true, mutable: false, caseExact: true}),
new Attribute("dateTime", "created", {direction: "out", mutable: false}),
Expand Down

0 comments on commit f321be3

Please sign in to comment.