-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from w3c/ege-fixes
Documentation fixes and regenarate project folder
- Loading branch information
Showing
15 changed files
with
9,230 additions
and
578 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,162 @@ | ||
type NamedThing | ||
# metamodel_version: 1.7.0 | ||
type ActionAffordance | ||
{ | ||
id: Uriorcurie! | ||
name: String | ||
titles: [MultiLanguage] | ||
descriptions: [MultiLanguage] | ||
title: MultiLanguage | ||
description: MultiLanguage | ||
titleInLanguage: MultiLanguage | ||
descriptionInLanguage: MultiLanguage | ||
name: String! | ||
uriVariables: [DataSchema] | ||
forms: [Form] | ||
safe: Boolean | ||
synchronous: Boolean | ||
idempotent: Boolean | ||
input: DataSchema | ||
output: DataSchema | ||
} | ||
|
||
type AdditionalExpectedResponse | ||
{ | ||
contentType: String! | ||
additionalOutputSchema: String | ||
success: Boolean | ||
schema: String | ||
} | ||
|
||
type DataSchema | ||
{ | ||
description: MultiLanguage | ||
title: MultiLanguage | ||
titleInLanguage: MultiLanguage | ||
descriptionInLanguage: MultiLanguage | ||
propertyName: String | ||
writeOnly: String | ||
readonly: String | ||
} | ||
|
||
type EventAffordance | ||
{ | ||
titles: [MultiLanguage] | ||
descriptions: [MultiLanguage] | ||
title: MultiLanguage | ||
description: MultiLanguage | ||
titleInLanguage: MultiLanguage | ||
descriptionInLanguage: MultiLanguage | ||
name: String! | ||
uriVariables: [DataSchema] | ||
forms: [Form] | ||
subscription: DataSchema | ||
cancellation: DataSchema | ||
notification: DataSchema | ||
notificationResponse: DataSchema | ||
} | ||
|
||
type ExpectedResponse | ||
{ | ||
contentType: String! | ||
} | ||
|
||
type Form | ||
{ | ||
target: AnyUri! | ||
href: AnyUri! | ||
contentType: String | ||
contentCoding: String | ||
securityDefinitions: String | ||
scopes: String | ||
returns: ExpectedResponse | ||
additionalReturns: [AdditionalExpectedResponse] | ||
subprotocol: String | ||
operationType: [OperationTypes] | ||
} | ||
|
||
type InteractionAffordance | ||
{ | ||
titles: [MultiLanguage] | ||
descriptions: [MultiLanguage] | ||
title: MultiLanguage | ||
description: MultiLanguage | ||
titleInLanguage: MultiLanguage | ||
descriptionInLanguage: MultiLanguage | ||
name: String! | ||
uriVariables: [DataSchema] | ||
forms: [Form] | ||
} | ||
|
||
type Link | ||
{ | ||
target: AnyUri! | ||
hintsAtMediaType: String | ||
type: String | ||
relation: String | ||
anchor: AnyUri | ||
sizes: String | ||
hreflang: String | ||
} | ||
|
||
type MultiLanguage | ||
{ | ||
key: String! | ||
} | ||
|
||
type PropertyAffordance implements DataSchema | ||
{ | ||
titles: [MultiLanguage] | ||
descriptions: [MultiLanguage] | ||
title: MultiLanguage | ||
description: MultiLanguage | ||
titleInLanguage: MultiLanguage | ||
descriptionInLanguage: MultiLanguage | ||
name: String! | ||
uriVariables: [DataSchema] | ||
forms: [Form] | ||
observable: Boolean | ||
propertyName: String | ||
writeOnly: String | ||
readonly: String | ||
} | ||
|
||
type SecurityScheme | ||
{ | ||
@type: [String] | ||
descriptions: [MultiLanguage] | ||
description: String | ||
proxy: AnyUri | ||
scheme: SecuritySchemeType! | ||
} | ||
|
||
type Thing | ||
{ | ||
id: Uriorcurie! | ||
name: String | ||
description: String | ||
primaryEmail: String | ||
birthDate: Date | ||
ageInYears: Integer | ||
vitalStatus: PersonStatus | ||
id: AnyUri! | ||
title: MultiLanguage | ||
description: MultiLanguage | ||
titles: [MultiLanguage] | ||
descriptions: [MultiLanguage] | ||
@type: [String] | ||
titleInLanguage: MultiLanguage | ||
descriptionInLanguage: MultiLanguage | ||
securityDefinitions: [String] | ||
security: [String] | ||
schemaDefinitions: [DataSchema] | ||
profile: [AnyUri] | ||
instance: String | ||
created: Datetime | ||
modified: Datetime | ||
supportContact: AnyUri | ||
base: AnyUri | ||
version: VersionInfo | ||
forms: [Form] | ||
links: [Link] | ||
properties: [PropertyAffordance] | ||
actions: [ActionAffordance] | ||
events: [EventAffordance] | ||
} | ||
|
||
type ThingCollection | ||
type VersionInfo | ||
{ | ||
entries: [Thing] | ||
instance: String! | ||
model: String | ||
} | ||
|
Oops, something went wrong.