# JSON Schema Resource Type (ResourceType) ```python json_schema_resource_type = { "type_uri": "json schema uri", schema=None, schema_uri="http://json.org/schema-04/", context=None, context_uri="http://json-ld.org/json-ld#context", slug="json-schema", } ``` # JSON-LD Context Resource Type (ResourceType) ```python json_ld_context_resource_type = { "type_uri": "json-ld context uri", schema=None, schema_uri="...", context=None, context_uri="...", slug="json-ld", } ``` # Partner Profile JSON Schema (Resource) ```python partner_profile_json_schema = { "resource_type": json_schema_resource_type.id, "content": "... the Partner Profile JSON Schema", "id": "1", } ``` # Partner Profile JSON-LD Context (Resource) ```python partner_profile_json_ld = { "resource_type": json_ld_context_resource_type.id, "content": "... the Partner Profile JSON-LD Context" "id": "2", } ``` # PartnerProfile ResourceType (ResourceType) ```python partner_profile_resource_type = { "id": "some-uuid", "type_uri": "https://api.openteams.com/json-ld/PartnerProfile", "schema": partner_profile_json_schema.id, "context": partner_profile_json_ld.id, } ``` # A PartnerProfile resource (Resource) ```python partner_profile_resource = { "content": { "name": "Semantics and CRUD, LLC", "display_name": "Semantics and CRUD", "logo": "http://backend.openteams.com/partners/semantics-crud/media/logo.png", "id": "some-uuid", }, "resource_type": partner_profile_resource_type.id } ```