├── .gitmodules ├── README.md ├── documentation └── bestPractices.md ├── schemas ├── assistant-manifest │ ├── 0.9.0 │ │ ├── assistant-manifest-schema.json │ │ └── sample-json │ │ │ ├── example-manifest1.json │ │ │ └── validate-schema.ipynb │ ├── 0.9.1 │ │ ├── assistant-manifest-schema.json │ │ └── sample-json │ │ │ ├── example-manifest1.json │ │ │ └── validate-schema.ipynb │ ├── 0.9.2 │ │ ├── assistant-manifest-schema.json │ │ └── sample-json │ │ │ ├── example-manifest1.json │ │ │ └── validate-schema.ipynb │ └── 1.0.0 │ │ ├── assistant-manifest-schema.json │ │ └── sample-json │ │ ├── example-manifest1.json │ │ └── validate-schema.ipynb ├── conversation-envelope │ ├── 0.9.0 │ │ └── conversation-envelope-schema.json │ ├── 0.9.1 │ │ ├── conversation-envelope-schema.json │ │ └── sample-json │ │ │ ├── example-ovon-bye-minimal.json │ │ │ ├── example-ovon-response-and-delegate-minimal.json │ │ │ ├── example-ovon-response-and-delegate-verbose.json │ │ │ ├── example-ovon-system-response-minimal.json │ │ │ ├── example-ovon-system-response-verbose.json │ │ │ ├── example-ovon-user-input-minimal.json │ │ │ ├── example-ovon-user-input-verbose.json │ │ │ └── validate-schema.ipynb │ ├── 0.9.2 │ │ ├── conversation-envelope-schema.json │ │ └── sample-json │ │ │ ├── example-ovon-bye-minimal.json │ │ │ ├── example-ovon-findAssistant.json │ │ │ ├── example-ovon-proposeAssistant.json │ │ │ ├── example-ovon-publishManifest.json │ │ │ ├── example-ovon-requestManifest.json │ │ │ ├── example-ovon-response-and-delegate-minimal.json │ │ │ ├── example-ovon-response-and-delegate-verbose.json │ │ │ ├── example-ovon-system-response-minimal.json │ │ │ ├── example-ovon-system-response-verbose.json │ │ │ ├── example-ovon-user-input-minimal.json │ │ │ ├── example-ovon-user-input-verbose.json │ │ │ └── validate-schema.ipynb │ ├── 0.9.3 │ │ ├── conversation-envelope-schema.json │ │ └── sample-json │ │ │ ├── example-ovon-bye-minimal.json │ │ │ ├── example-ovon-findAssistant.json │ │ │ ├── example-ovon-proposeAssistant.json │ │ │ ├── example-ovon-publishManifest.json │ │ │ ├── example-ovon-requestManifest.json │ │ │ ├── example-ovon-response-and-delegate-minimal.json │ │ │ ├── example-ovon-response-and-delegate-verbose.json │ │ │ ├── example-ovon-system-response-minimal.json │ │ │ ├── example-ovon-system-response-verbose.json │ │ │ ├── example-ovon-user-input-minimal.json │ │ │ ├── example-ovon-user-input-verbose.json │ │ │ └── validate-schema.ipynb │ ├── 0.9.4 │ │ ├── conversation-envelope-schema.json │ │ └── sample-json │ │ │ ├── example-bye.json │ │ │ ├── example-context.json │ │ │ ├── example-declineInvite.json │ │ │ ├── example-envelope.json │ │ │ ├── example-getManifests1.json │ │ │ ├── example-getManifests2.json │ │ │ ├── example-getManifests3.json │ │ │ ├── example-grantFloor.json │ │ │ ├── example-invite.json │ │ │ ├── example-publishManifests.json │ │ │ ├── example-requestFloor.json │ │ │ ├── example-revokeFloor.json │ │ │ ├── example-uninvite.json │ │ │ ├── example-utterance.json │ │ │ ├── example-yieldFloor.json │ │ │ └── validate-schema.ipynb │ └── 1.0.0 │ │ ├── conversation-envelope-schema.json │ │ └── sample-json │ │ ├── example-bye.json │ │ ├── example-context.json │ │ ├── example-declineInvite.json │ │ ├── example-envelope.json │ │ ├── example-getManifests1.json │ │ ├── example-getManifests2.json │ │ ├── example-getManifests3.json │ │ ├── example-grantFloor.json │ │ ├── example-invite.json │ │ ├── example-publishManifests.json │ │ ├── example-requestFloor.json │ │ ├── example-revokeFloor.json │ │ ├── example-uninvite.json │ │ ├── example-utterance.json │ │ ├── example-yieldFloor.json │ │ └── validate-schema.ipynb └── dialog-event │ ├── 1.0.0 │ └── dialog-event-schema.json │ ├── 1.0.1 │ ├── dialog-event-schema.json │ └── sample-json │ │ ├── figure2.json │ │ ├── figure3.json │ │ ├── figure4.json │ │ ├── utterance0.json │ │ ├── utterance4a.json │ │ ├── utterance5.json │ │ └── validate-schema.ipynb │ └── 1.0.2 │ ├── dialog-event-schema.json │ └── sample-json │ ├── figure2.json │ ├── figure3.json │ ├── figure4.json │ ├── utterance0.json │ ├── utterance4a.json │ ├── utterance5.json │ └── validate-schema.ipynb └── specifications ├── AssistantManifest ├── 0.9.0 │ └── AssistantManifestSpec.md ├── 0.9.1 │ └── AssistantManifestSpec.md ├── 0.9.2 │ └── AssistantManifestSpec.md └── 1.0.0 │ └── AssistantManifestSpec.md ├── ConversationEnvelope ├── 0.9.0 │ └── InteroperableConvEnvSpec.md ├── 0.9.1 │ └── InteroperableConvEnvSpec.md ├── 0.9.2 │ └── InteroperableConvEnvSpec.md ├── 0.9.3 │ └── InteroperableConvEnvSpec.md ├── 0.9.4 │ ├── InteroperableConvEnvSpec.md │ ├── round-table-configuration.png │ ├── round-table.png │ └── simple-configuration.png └── 1.0.0 │ ├── InteroperableConvEnvSpec.md │ ├── round-table-configuration.png │ ├── round-table.png │ └── simple-configuration.png ├── DialogEvents ├── 1.0.0 │ └── InteropDialogEventSpecs.md ├── 1.0.1 │ └── InteropDialogEventSpecs.md └── 1.0.2 │ └── InteropDialogEventSpecs.md └── SPEC_LICENSE.md /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/README.md -------------------------------------------------------------------------------- /documentation/bestPractices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/documentation/bestPractices.md -------------------------------------------------------------------------------- /schemas/assistant-manifest/0.9.0/assistant-manifest-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/assistant-manifest/0.9.0/assistant-manifest-schema.json -------------------------------------------------------------------------------- /schemas/assistant-manifest/0.9.0/sample-json/example-manifest1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/assistant-manifest/0.9.0/sample-json/example-manifest1.json -------------------------------------------------------------------------------- /schemas/assistant-manifest/0.9.0/sample-json/validate-schema.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/assistant-manifest/0.9.0/sample-json/validate-schema.ipynb -------------------------------------------------------------------------------- /schemas/assistant-manifest/0.9.1/assistant-manifest-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/assistant-manifest/0.9.1/assistant-manifest-schema.json -------------------------------------------------------------------------------- /schemas/assistant-manifest/0.9.1/sample-json/example-manifest1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/assistant-manifest/0.9.1/sample-json/example-manifest1.json -------------------------------------------------------------------------------- /schemas/assistant-manifest/0.9.1/sample-json/validate-schema.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/assistant-manifest/0.9.1/sample-json/validate-schema.ipynb -------------------------------------------------------------------------------- /schemas/assistant-manifest/0.9.2/assistant-manifest-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/assistant-manifest/0.9.2/assistant-manifest-schema.json -------------------------------------------------------------------------------- /schemas/assistant-manifest/0.9.2/sample-json/example-manifest1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/assistant-manifest/0.9.2/sample-json/example-manifest1.json -------------------------------------------------------------------------------- /schemas/assistant-manifest/0.9.2/sample-json/validate-schema.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/assistant-manifest/0.9.2/sample-json/validate-schema.ipynb -------------------------------------------------------------------------------- /schemas/assistant-manifest/1.0.0/assistant-manifest-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/assistant-manifest/1.0.0/assistant-manifest-schema.json -------------------------------------------------------------------------------- /schemas/assistant-manifest/1.0.0/sample-json/example-manifest1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/assistant-manifest/1.0.0/sample-json/example-manifest1.json -------------------------------------------------------------------------------- /schemas/assistant-manifest/1.0.0/sample-json/validate-schema.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/assistant-manifest/1.0.0/sample-json/validate-schema.ipynb -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.0/conversation-envelope-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.0/conversation-envelope-schema.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.1/conversation-envelope-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.1/conversation-envelope-schema.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.1/sample-json/example-ovon-bye-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.1/sample-json/example-ovon-bye-minimal.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.1/sample-json/example-ovon-response-and-delegate-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.1/sample-json/example-ovon-response-and-delegate-minimal.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.1/sample-json/example-ovon-response-and-delegate-verbose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.1/sample-json/example-ovon-response-and-delegate-verbose.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.1/sample-json/example-ovon-system-response-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.1/sample-json/example-ovon-system-response-minimal.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.1/sample-json/example-ovon-system-response-verbose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.1/sample-json/example-ovon-system-response-verbose.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.1/sample-json/example-ovon-user-input-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.1/sample-json/example-ovon-user-input-minimal.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.1/sample-json/example-ovon-user-input-verbose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.1/sample-json/example-ovon-user-input-verbose.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.1/sample-json/validate-schema.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.1/sample-json/validate-schema.ipynb -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.2/conversation-envelope-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.2/conversation-envelope-schema.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.2/sample-json/example-ovon-bye-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.2/sample-json/example-ovon-bye-minimal.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.2/sample-json/example-ovon-findAssistant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.2/sample-json/example-ovon-findAssistant.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.2/sample-json/example-ovon-proposeAssistant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.2/sample-json/example-ovon-proposeAssistant.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.2/sample-json/example-ovon-publishManifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.2/sample-json/example-ovon-publishManifest.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.2/sample-json/example-ovon-requestManifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.2/sample-json/example-ovon-requestManifest.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.2/sample-json/example-ovon-response-and-delegate-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.2/sample-json/example-ovon-response-and-delegate-minimal.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.2/sample-json/example-ovon-response-and-delegate-verbose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.2/sample-json/example-ovon-response-and-delegate-verbose.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.2/sample-json/example-ovon-system-response-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.2/sample-json/example-ovon-system-response-minimal.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.2/sample-json/example-ovon-system-response-verbose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.2/sample-json/example-ovon-system-response-verbose.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.2/sample-json/example-ovon-user-input-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.2/sample-json/example-ovon-user-input-minimal.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.2/sample-json/example-ovon-user-input-verbose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.2/sample-json/example-ovon-user-input-verbose.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.2/sample-json/validate-schema.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.2/sample-json/validate-schema.ipynb -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.3/conversation-envelope-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.3/conversation-envelope-schema.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.3/sample-json/example-ovon-bye-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.3/sample-json/example-ovon-bye-minimal.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.3/sample-json/example-ovon-findAssistant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.3/sample-json/example-ovon-findAssistant.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.3/sample-json/example-ovon-proposeAssistant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.3/sample-json/example-ovon-proposeAssistant.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.3/sample-json/example-ovon-publishManifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.3/sample-json/example-ovon-publishManifest.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.3/sample-json/example-ovon-requestManifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.3/sample-json/example-ovon-requestManifest.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.3/sample-json/example-ovon-response-and-delegate-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.3/sample-json/example-ovon-response-and-delegate-minimal.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.3/sample-json/example-ovon-response-and-delegate-verbose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.3/sample-json/example-ovon-response-and-delegate-verbose.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.3/sample-json/example-ovon-system-response-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.3/sample-json/example-ovon-system-response-minimal.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.3/sample-json/example-ovon-system-response-verbose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.3/sample-json/example-ovon-system-response-verbose.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.3/sample-json/example-ovon-user-input-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.3/sample-json/example-ovon-user-input-minimal.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.3/sample-json/example-ovon-user-input-verbose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.3/sample-json/example-ovon-user-input-verbose.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.3/sample-json/validate-schema.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.3/sample-json/validate-schema.ipynb -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.4/conversation-envelope-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.4/conversation-envelope-schema.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.4/sample-json/example-bye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.4/sample-json/example-bye.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.4/sample-json/example-context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.4/sample-json/example-context.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.4/sample-json/example-declineInvite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.4/sample-json/example-declineInvite.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.4/sample-json/example-envelope.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.4/sample-json/example-envelope.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.4/sample-json/example-getManifests1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.4/sample-json/example-getManifests1.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.4/sample-json/example-getManifests2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.4/sample-json/example-getManifests2.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.4/sample-json/example-getManifests3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.4/sample-json/example-getManifests3.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.4/sample-json/example-grantFloor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.4/sample-json/example-grantFloor.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.4/sample-json/example-invite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.4/sample-json/example-invite.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.4/sample-json/example-publishManifests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.4/sample-json/example-publishManifests.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.4/sample-json/example-requestFloor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.4/sample-json/example-requestFloor.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.4/sample-json/example-revokeFloor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.4/sample-json/example-revokeFloor.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.4/sample-json/example-uninvite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.4/sample-json/example-uninvite.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.4/sample-json/example-utterance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.4/sample-json/example-utterance.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.4/sample-json/example-yieldFloor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.4/sample-json/example-yieldFloor.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/0.9.4/sample-json/validate-schema.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/0.9.4/sample-json/validate-schema.ipynb -------------------------------------------------------------------------------- /schemas/conversation-envelope/1.0.0/conversation-envelope-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/1.0.0/conversation-envelope-schema.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/1.0.0/sample-json/example-bye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/1.0.0/sample-json/example-bye.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/1.0.0/sample-json/example-context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/1.0.0/sample-json/example-context.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/1.0.0/sample-json/example-declineInvite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/1.0.0/sample-json/example-declineInvite.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/1.0.0/sample-json/example-envelope.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/1.0.0/sample-json/example-envelope.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/1.0.0/sample-json/example-getManifests1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/1.0.0/sample-json/example-getManifests1.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/1.0.0/sample-json/example-getManifests2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/1.0.0/sample-json/example-getManifests2.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/1.0.0/sample-json/example-getManifests3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/1.0.0/sample-json/example-getManifests3.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/1.0.0/sample-json/example-grantFloor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/1.0.0/sample-json/example-grantFloor.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/1.0.0/sample-json/example-invite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/1.0.0/sample-json/example-invite.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/1.0.0/sample-json/example-publishManifests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/1.0.0/sample-json/example-publishManifests.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/1.0.0/sample-json/example-requestFloor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/1.0.0/sample-json/example-requestFloor.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/1.0.0/sample-json/example-revokeFloor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/1.0.0/sample-json/example-revokeFloor.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/1.0.0/sample-json/example-uninvite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/1.0.0/sample-json/example-uninvite.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/1.0.0/sample-json/example-utterance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/1.0.0/sample-json/example-utterance.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/1.0.0/sample-json/example-yieldFloor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/1.0.0/sample-json/example-yieldFloor.json -------------------------------------------------------------------------------- /schemas/conversation-envelope/1.0.0/sample-json/validate-schema.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/conversation-envelope/1.0.0/sample-json/validate-schema.ipynb -------------------------------------------------------------------------------- /schemas/dialog-event/1.0.0/dialog-event-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/dialog-event/1.0.0/dialog-event-schema.json -------------------------------------------------------------------------------- /schemas/dialog-event/1.0.1/dialog-event-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/dialog-event/1.0.1/dialog-event-schema.json -------------------------------------------------------------------------------- /schemas/dialog-event/1.0.1/sample-json/figure2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/dialog-event/1.0.1/sample-json/figure2.json -------------------------------------------------------------------------------- /schemas/dialog-event/1.0.1/sample-json/figure3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/dialog-event/1.0.1/sample-json/figure3.json -------------------------------------------------------------------------------- /schemas/dialog-event/1.0.1/sample-json/figure4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/dialog-event/1.0.1/sample-json/figure4.json -------------------------------------------------------------------------------- /schemas/dialog-event/1.0.1/sample-json/utterance0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/dialog-event/1.0.1/sample-json/utterance0.json -------------------------------------------------------------------------------- /schemas/dialog-event/1.0.1/sample-json/utterance4a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/dialog-event/1.0.1/sample-json/utterance4a.json -------------------------------------------------------------------------------- /schemas/dialog-event/1.0.1/sample-json/utterance5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/dialog-event/1.0.1/sample-json/utterance5.json -------------------------------------------------------------------------------- /schemas/dialog-event/1.0.1/sample-json/validate-schema.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/dialog-event/1.0.1/sample-json/validate-schema.ipynb -------------------------------------------------------------------------------- /schemas/dialog-event/1.0.2/dialog-event-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/dialog-event/1.0.2/dialog-event-schema.json -------------------------------------------------------------------------------- /schemas/dialog-event/1.0.2/sample-json/figure2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/dialog-event/1.0.2/sample-json/figure2.json -------------------------------------------------------------------------------- /schemas/dialog-event/1.0.2/sample-json/figure3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/dialog-event/1.0.2/sample-json/figure3.json -------------------------------------------------------------------------------- /schemas/dialog-event/1.0.2/sample-json/figure4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/dialog-event/1.0.2/sample-json/figure4.json -------------------------------------------------------------------------------- /schemas/dialog-event/1.0.2/sample-json/utterance0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/dialog-event/1.0.2/sample-json/utterance0.json -------------------------------------------------------------------------------- /schemas/dialog-event/1.0.2/sample-json/utterance4a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/dialog-event/1.0.2/sample-json/utterance4a.json -------------------------------------------------------------------------------- /schemas/dialog-event/1.0.2/sample-json/utterance5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/dialog-event/1.0.2/sample-json/utterance5.json -------------------------------------------------------------------------------- /schemas/dialog-event/1.0.2/sample-json/validate-schema.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/schemas/dialog-event/1.0.2/sample-json/validate-schema.ipynb -------------------------------------------------------------------------------- /specifications/AssistantManifest/0.9.0/AssistantManifestSpec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/specifications/AssistantManifest/0.9.0/AssistantManifestSpec.md -------------------------------------------------------------------------------- /specifications/AssistantManifest/0.9.1/AssistantManifestSpec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/specifications/AssistantManifest/0.9.1/AssistantManifestSpec.md -------------------------------------------------------------------------------- /specifications/AssistantManifest/0.9.2/AssistantManifestSpec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/specifications/AssistantManifest/0.9.2/AssistantManifestSpec.md -------------------------------------------------------------------------------- /specifications/AssistantManifest/1.0.0/AssistantManifestSpec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/specifications/AssistantManifest/1.0.0/AssistantManifestSpec.md -------------------------------------------------------------------------------- /specifications/ConversationEnvelope/0.9.0/InteroperableConvEnvSpec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/specifications/ConversationEnvelope/0.9.0/InteroperableConvEnvSpec.md -------------------------------------------------------------------------------- /specifications/ConversationEnvelope/0.9.1/InteroperableConvEnvSpec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/specifications/ConversationEnvelope/0.9.1/InteroperableConvEnvSpec.md -------------------------------------------------------------------------------- /specifications/ConversationEnvelope/0.9.2/InteroperableConvEnvSpec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/specifications/ConversationEnvelope/0.9.2/InteroperableConvEnvSpec.md -------------------------------------------------------------------------------- /specifications/ConversationEnvelope/0.9.3/InteroperableConvEnvSpec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/specifications/ConversationEnvelope/0.9.3/InteroperableConvEnvSpec.md -------------------------------------------------------------------------------- /specifications/ConversationEnvelope/0.9.4/InteroperableConvEnvSpec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/specifications/ConversationEnvelope/0.9.4/InteroperableConvEnvSpec.md -------------------------------------------------------------------------------- /specifications/ConversationEnvelope/0.9.4/round-table-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/specifications/ConversationEnvelope/0.9.4/round-table-configuration.png -------------------------------------------------------------------------------- /specifications/ConversationEnvelope/0.9.4/round-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/specifications/ConversationEnvelope/0.9.4/round-table.png -------------------------------------------------------------------------------- /specifications/ConversationEnvelope/0.9.4/simple-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/specifications/ConversationEnvelope/0.9.4/simple-configuration.png -------------------------------------------------------------------------------- /specifications/ConversationEnvelope/1.0.0/InteroperableConvEnvSpec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/specifications/ConversationEnvelope/1.0.0/InteroperableConvEnvSpec.md -------------------------------------------------------------------------------- /specifications/ConversationEnvelope/1.0.0/round-table-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/specifications/ConversationEnvelope/1.0.0/round-table-configuration.png -------------------------------------------------------------------------------- /specifications/ConversationEnvelope/1.0.0/round-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/specifications/ConversationEnvelope/1.0.0/round-table.png -------------------------------------------------------------------------------- /specifications/ConversationEnvelope/1.0.0/simple-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/specifications/ConversationEnvelope/1.0.0/simple-configuration.png -------------------------------------------------------------------------------- /specifications/DialogEvents/1.0.0/InteropDialogEventSpecs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/specifications/DialogEvents/1.0.0/InteropDialogEventSpecs.md -------------------------------------------------------------------------------- /specifications/DialogEvents/1.0.1/InteropDialogEventSpecs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/specifications/DialogEvents/1.0.1/InteropDialogEventSpecs.md -------------------------------------------------------------------------------- /specifications/DialogEvents/1.0.2/InteropDialogEventSpecs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/specifications/DialogEvents/1.0.2/InteropDialogEventSpecs.md -------------------------------------------------------------------------------- /specifications/SPEC_LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-voice-interoperability/openfloor-docs/HEAD/specifications/SPEC_LICENSE.md --------------------------------------------------------------------------------