01:15:33 dbooth has joined #ledp 01:58:22 timbl has joined #ledp 02:06:21 timbl_ has joined #ledp 03:28:35 ballen has joined #ledp 03:38:39 sspeiche has joined #LEDP 03:40:20 sspeiche has left #LEDP 03:42:11 Arnaud has joined #ledp 04:41:23 dbooth has joined #ledp 13:00:31 RRSAgent has joined #ledp 13:00:31 logging to http://www.w3.org/2011/12/07-ledp-irc 13:00:39 rrsagent, make logs public 13:02:26 Topic: Semantic Web Application Patterns: Pipelines, Versioning and Validation 13:03:44 by David Booth 13:04:59 http://dbooth.org/2011/ledp/ 13:07:10 martynas has joined #ledp 13:07:20 julius has joined #ledp 13:10:01 dbooth is talking 13:10:03 Arnaud has joined #ledp 13:10:40 joined new startup PangenX in healthcare 13:11:01 Addressing the semantic integration problem 13:11:28 create the illusion of a single unified data source 13:11:36 ...using RDF in the middle 13:11:53 sspeiche has joined #LEDP 13:12:01 There's some kind of data production pipeline 13:13:34 Question: Martin Nally: We made people turn data at the edge into http resources 13:14:24 use ontologies/rules etc within the data pipeline 13:14:52 David Wood: Suggests breakout session about minimal server for HTTP+RDF 13:15:15 timbl has joined #ledp 13:15:21 Illustrates with Cleveland Clinic reporting pipeline 13:15:43 A dependency graph 13:16:01 Each node is a consumer and producer of data 13:17:01 Martin Nally: Suggests a comparison of standard ETL techniques with an RDF based approach would be interesting. 13:17:41 Convert into RDF at the edges - but you're not done, plenty more work to do. 13:18:01 David Wood: LeeF is going to talk about data segmentation - also relevant. 13:18:37 Need to be smart about tracking when data changes - not doing redundant work 13:18:56 open source project "RDF Pipeline" PoC 13:19:11 The pipeline (graph) is described in RDF 13:20:03 Each node is a processing stage combining a wrapper and update code 13:20:10 bheitman has joined #ledp 13:20:29 Each node declares its inputs (as an RDF List) 13:20:41 Each node has a URL 13:20:50 ale_de_vries has joined #ledp 13:21:32 The updaters are found in well known places (not described in the RDF) 13:21:48 The updater does the interesting work 13:22:04 This is like RDF Make / Ant 13:22:45 Updaters have their own policy about when to recompute their output (lazy, eager, periodic etc) 13:23:34 The wrappers are typed (eg. FileNode, SparqlGraphNode) 13:24:01 FileNode is simply a wrapper for a shell-script 13:24:23 The SparqlGraphNode inputs and outputs to/from named graphs 13:24:47 Wrappers handle inter-node communication, HTTP by default 13:25:20 If you have 2 nodes in the same JVM you don't need to go out to HTTP, the wrapper can be directly invoked 13:25:49 This is a framework not an API. based on an RDF description. 13:26:07 This is language agnostic - you don't even need to use RDF 13:26:30 part 2: Ontologies and rules for semantic transfromations 13:26:46 uses SPARQL as a rules language (see also SPIN) 13:27:18 (unlike SPIN) this uses SPARQL INSERT 13:27:53 This is more efficient than using CONSTRUCT, because data is handled within the triple-store 13:28:14 Uses dynamic combination of named graphs 13:28:42 equivalent to multiple from named clauses 13:28:54 David Wood: Mulgara does something like this 13:30:08 My question: Why not use the multiple from named construct? Because you might have thousands (e.g. think of patient records) 13:30:33 TBL: Have you considered other graph operations? 13:32:02 David Wood: Algenraic operation s sneak in through real-world use-cases 13:32:28 TBL: Are you looking for the language for writing pipeline operations. eg. In CWM you merge and filter graphs. 13:33:32 The motivation is that ad-hoc pipelines are a nightmare to maintain. 13:35:02 Martin Nally: Was this produced for a customer? Would be more convinced there's a market if a major customer had demanded this. 13:35:47 Oracle has an RDF product (Oracle semantic technology) 13:37:20 Cornelia has joined #ledp 13:37:24 There will be RDF support in DB2 - not a major announcement, just incremental development. 13:38:16 Martin Nally: Is there a role for the W3C to compile information about customer use-cases. 13:39:01 TBL: W3C will do education outreach, including case-studies. 13:39:02 LeeF has joined #ledp 13:39:31 These will explain the ROI 13:40:15 David Wood: Aware of a use-case where they have millions of (named) graphs. They run into exactly this kind of processing problem. 13:40:28 Last points about URI versioning 13:40:36 ballen has joined #ledp 13:40:39 Change the URI or the semantics? 13:41:00 point 1: Publish your versioning policy whatever way you go. 13:41:51 Point 2: Old and new URIs can co-exist (in RDF). Doesn't break extant software 13:43:03 Martin Nally: Works well in publishing web. Read/Write web is more problematic 13:43:12 http://dbooth.org/2011/ledp/ 13:43:51 How to validate in an open world? 13:44:04 AlanYagoda has joined #ledp 13:44:12 1: model integrity: is what I'm producing sensible? 13:44:48 2: Suitability for use - this is defined by the consumer with own expectations. 13:45:19 Producers supply validator for the data they produce, the consumer for the data they expect. 13:45:32 "SPARQL is my hammer" 13:46:34 Martin Nally: How do I publish my validation (rules) ahead of time - not just a runtime task. 13:46:55 dbooth: The validator is a design-time construct serving that purpose 13:47:59 Martin Nally: There's runtime variability. How do we capture that? 13:48:11 [slide 24] 13:48:46 How do you describe that _structure_ (metadata)? 13:49:18 The consumer expects more that just RDF 13:49:43 Sandro: first approx is a description of the vocabulary 13:50:03 s/description/enumeration/ 13:50:32 Then the constraints on the data. 13:51:36 Martin Nally: Schema can be used to form and constrain data. Can SPARQL be used in the same way? 13:52:12 Sandro: Easy to write inscrutable SPARQL 13:52:54 Sandro: Should be possible to use SPARQL (ASK) and schema interchangeably 13:53:37 dboot: SPARQL ASK can be used as a validator 13:54:18 Martin: This is a view definition, it can be used in different ways. 13:55:16 Question: Isn't RDF self-describing? Properties you (the consumer) recognises can be used however they like. What's the role of validation? 13:55:37 TBL: For example, in geodata there's a lat for every long. 13:56:10 dbooth: has finished 13:56:39 I wanna mention SPIN again - it has some vocabulary for validation. Haven't tried it though 13:58:00 One more question: How does this contrast with SPARQL motion? 13:58:21 dbooth: that has a centralized architecture 13:58:52 EricP begins 13:59:13 https://www.w3.org/2011/Talks/1207-acls-egp/ 13:59:21 on slide 2 13:59:32 davidwood has joined #ledp 13:59:54 About Web Access Control 14:00:35 If the atomicity is the document you end up with hundreds of named hraphs expressing the ACLs 14:01:17 Express ACLs for a particular graph pattern, not a particular document. 14:01:42 Analogous to Oracle label security 14:01:51 cmatheus has joined #ledp 14:02:02 Existing Abstract POlicy Language 14:02:20 helthcare dominated by XACML 14:02:59 XACML needs to be profiled, leans heavily on HL7 14:04:34 The expressivity eg. "SalesManager in Boston implies access to regional projections". A bunch of conjunctions 14:05:01 Enforcement ensures request falls within the policy 14:05:18 Expressed in RDF "just for fun" 14:06:00 Enforcement by SPARQL extension functions used in a SPARQL filter. Standard tooling doesn't do anything for you. 14:06:26 Virtual views (SPARQL constructs create a virtual view) 14:06:39 Give syou control over what the consumer can see. 14:07:12 For example you can hide private information 14:08:07 Sprinkle the access controlled data in SPARQL OPTIONALS that will leave the sensitive data unbound. 14:09:17 Each optional has a condition that looks at the access (named) graph for authorisation 14:09:35 slide 13 14:09:52 ACLs are visibly next to the sensitive information. 14:10:05 Makes it easier to debug and inspect 14:11:58 Arbitrary SPARQL expressivity: eg. you can have conditions that are selective on the medication. 14:12:26 XACML doesn't give you that degree of expressivity 14:13:07 Martin: IBM has done some query rewriting for security - ran into performance issues 14:14:19 dbooth: Was the performance issue because they were doing it on the fly. 14:14:45 Martin: No not construction, but execution of the (rewritten) query. 14:15:27 dbooth: What did you do instead? 14:16:13 Martin: fell back to something closer to the virtual graphs. Jena built this at a lower level rather than doing this in-query. 14:17:37 EricP: data obligation (time sensitivity) is hard. 14:18:32 Policy injection (of patterns from a XACML) is future work. 14:19:18 Contrast with Oracle object level security - the users will choose. 14:19:49 Question: Is fine grained access control (at the triple level) really useful? 14:20:01 cmatheus has joined #ledp 14:21:04 s/Question/Ashok/ 14:22:05 Elsevier: We need to create views that particular customers can see. 14:22:34 EricP has finished 14:23:09 LeeF up next 14:24:03 http://dl.dropbox.com/u/11365687/ledp/ledp2011-data-segmenting-in-anzo.pptx 14:24:19 davidwood has joined #ledp 14:24:28 http://dl.dropbox.com/u/11365687/ledp/ledp2011-data-segmenting-in-anzo.pptx 14:24:57 "Data Segmenting in Anzo" 14:25:15 Topic: Data Segmenting in Anzo 14:25:21 by Lee Feigenbaum 14:25:29 Where do we see value in the loinked data space 14:26:06 Cambridge Semantics support deployment of the Anzo platform. 14:26:32 Our hammer is named graphs. 14:27:22 Smallest unit of granularity for versioning, access control. Using TriG 14:28:25 Does everything go into a named graph? single triples (eg. for statement level control) ? 14:29:00 ballen has joined #ledp 14:29:09 Do named graphs correspond to documents? sometimes docs are artificial constructs. 14:30:05 Or all triples sharing the same subject - gets the job done. subject triple closure. 14:30:39 concise bounded description - though the moral is to avoid bnodes where possible. 14:32:33 Use annotation to denote some properties as internal. eg. The wheels of a car are treated as 'internal' to the car (and end up in the same named graph) rather than having separate graphs for each wheel. 14:33:02 TBL: You're treating the direction of the relationship as being significant. 14:33:48 EricP: You're making access control decisions. 14:34:48 TBL: RDF isn't a tree - don't do object oriented programming in disguise. 14:35:02 TBL: with this design, my decision about modeling with "parent" vs "child" becomes an Access Control decision. Direction of link shouldn't matter. 14:35:57 rulesguy has joined #ledp 14:36:31 dbooth: The direction is being used as a heuristic way to organize the data. 14:37:11 Sandro: The unit of AC is a subject oriented graph. 14:39:11 TBL: This makes it harder to navigate to the parent - it ends up in a different named graph. 14:39:13 sandro: do we automatically also get to see who the subject parents are, or who the children are, having been given access o the subject graph...? 14:39:58 The impact is that we end up with millions of small (named) graphs 14:40:30 But this corresponds with the natural granularity for permissions. 14:40:56 The challenge is to find the right graph 14:41:39 ...and sometimes multiple graphs (eg. including both the parents and children of a resource) 14:42:12 The graph name is the same as the resource name 14:42:37 Ora: RDF lets you use the same name for different things so that's OK 14:43:55 Sandro: You mean the name (URI) of the subject? Yes 14:44:21 ora has joined #ledp 14:45:00 Elsevier: We treat named graphs as a simple kind of packaging. They are combined later for a given application. 14:45:49 eg in notepad: ex:Lee { ex:Lee a ex:Person; ex:name "Lee" } 14:46:06 That was TriG, the name ex:Lee serves two roles 14:47:07 not kosher but pragmatic 14:48:03 The fallback is a system-wide sparql query. 14:48:25 ( IMHO, the reason Lee hasn't come across problems with this is they're not really doing decentralization / linked data. ) 14:48:40 mcdonoug has joined #ledp 14:48:59 graphs are replicated (cached) on the client 14:49:51 Now for linked - data... everything exposed as LD. It dereferences URIs. 14:50:40 LD priniciples are not used internally, but for public consumption. 14:52:40 Sandro: Does it do 303 redirects? 14:52:54 davidwood has joined #ledp 14:54:09 Impractical to enumerate millions of FROM..NAMED. Similar to dbooth but we call them 'named datasets'. 14:54:51 TBL: It's a virtual union graph 14:55:41 RDFS, OWL used as expressive data model (not really open world semantics) 14:55:58 publish RDFa and support JSON serializations. 14:56:22 SPARQL rules. Like dbooth, used CONSTRUCT but switched to INSERT 14:56:47 SPARQL ASK for preconditions and validation 14:57:38 Message: Anzo driven by semweb technologies, but it needs to be integrated within conventional software architectures. 14:57:58 Wary of standards that don't affect interoperability 14:57:58 ] 14:58:53 Lee: The time is totally ripe for a new Semantic Web Education / Outreach effort. 14:59:00 time is ripe for education and outreach. We're often asked to use their tools against arbitrary SPARQL endpoint. The answer is NO. 14:59:29 SPARQL 1.1. service description may make this easier. 15:00:10 standards needed for: advertising content of linked data sources, SPARQL endpoints 15:00:35 standards for named datasets and other SPARQL extensions 15:01:02 David: What extensions? 15:01:21 A few hundred function extensions. 15:03:18 Question: Do you have a feeling for the right kind of sizing for graphs in typical application? 15:03:49 Answer: It depends on the application, depending on performance metrics 15:04:33 Have you looked at Kasabi (re advertising content of LD)? Will look into it. 15:06:33 David Wood: Taking an action item to set up group to look into use/extensions/federation of SPARQL 15:07:22 e.g. what functions, extensions are supported by an endpoint. 15:07:38 David Wood: Also which predicates. vocabulary 15:07:46 TBL: That's a different level 15:08:46 There are a few different aspects, different groups are concerned with different aspects, they need to get together and agree, adopt and implement. 15:09:31 David Wood: There's a core of people who would be interested in talking about this and making a member submission. 15:09:54 EricP has picked up the ball and taken the action item. 15:10:22 LeeF has finished 15:11:00 dbooth has joined #ledp 15:11:44 betehess has joined #ledp 15:11:57 scribe: Alexandre 15:12:02 scribenick: betehess 15:12:13 RRSAgent, generate minutes 15:12:13 I have made the request to generate http://www.w3.org/2011/12/07-ledp-minutes.html betehess 15:14:28 title: Linked Enterprise Data Patterns Workshop - day 2 15:14:31 RRSAgent, generate minutes 15:14:31 I have made the request to generate http://www.w3.org/2011/12/07-ledp-minutes.html betehess 15:15:13 chair: Eric Prud'hommeaux 15:16:19 s/title: /meeting: / 15:16:22 RRSAgent, generate minutes 15:16:22 I have made the request to generate http://www.w3.org/2011/12/07-ledp-minutes.html betehess 15:17:08 Zakim has left #ledp 15:23:30 [note: DS will stand for David Schaengold, RevelytiX] 15:23:44 s/RevelytiX]/Revelytix]/ 15:23:56 DS: starting a background on revelytix 15:24:03 Topic: Validation of Distributed Enterprise Data is Necessary, and RIF Can Help 15:24:03 ... we're in DC area 15:24:14 http://www.w3.org/2011/09/LinkedData/ledp2011_submission_16.pdf 15:24:25 ... we're profitable 15:24:31 by David Schaengold (Revelytix) 15:24:34 ... around 35 people 15:24:53 ... will explain our software architecture 15:25:14 ... we have different kind of stores 15:25:22 ... it's not exactly a semweb architecture 15:25:30 ... it's more like data integration 15:25:48 ... we have rdbms, flat files, sometimes triple stores, etc. 15:26:06 ericP has changed the topic to: http://www.w3.org/2011/09/LinkedData/ledp2011_submission_16.pdf 15:26:23 ... we have spider, an implementation of r2rml 15:27:00 ... and then a module for sparql query federation 15:27:25 ... r2rml in an emerging standards (at w3c) 15:27:46 ... relation to rdf ML 15:28:14 Ora: how do you tweack the sql for your database? 15:28:45 ... speaking about case where databases can't do some kind of joins 15:28:56 ashok: you have full power of sql 15:29:32 Ora: let me ask again: there are some stuff you can't do with SQL, like @@@ 15:29:38 "hide" ??? 15:29:57 (something which "can't do self-join") 15:30:17 DS: we can take advantages of indexes, and other things 15:30:42 davidwood has joined #ledp 15:30:53 ... the result set is embedded into triples, that can be given to spider 15:31:16 ... spdier does optimizations during the federation 15:31:27 ... we intend to support virtualized queries 15:31:49 ... related to enterprise ontologies 15:32:40 ... we love sparql, but http is kind of slow 15:32:47 ... Sherpa is an adapter that is faster 15:33:08 ... between sparql federation and spider 15:33:17 Zakim has joined #ledp 15:33:24 Zakim, this is ledp 15:33:24 ok, ericP; that matches SW_(LEDP)7:30AM 15:33:29 ... so, we've run into problems 15:33:46 ... for example at the integration level 15:34:07 ... for example when you unify IDs among different stores 15:34:27 ... so we thought using owl or sparql 15:34:47 ... but they have different modelization capabilities 15:35:14 [DS giving examples of limits of sparql/owl] 15:35:44 DS: we need *one* language 15:35:49 ... for the set of rules 15:36:00 ... we're using RIF 15:36:30 [ enumerating key points for RIF from the slides ] 15:36:51 DS: RIF has 2 dialects 15:38:07 ... SPARQL is not a rule language 15:38:13 ... so we don't validation with it 15:38:44 ... there is no distinction between sparql query and sparql rule 15:38:48 ... too confusing 15:39:38 earlier, the database I was referring to was "Hive" (for Hadoop) 15:39:52 s/like @@@/like Hive/ 15:40:12 ora: is it even considered as SQL-compliant? 15:40:31 s/ora: is/ora, is/ 15:41:20 no, it isn't, it is "SQL-like" 15:41:23 DS: just by clicking a button, we can know which source is concerned 15:41:24 Permantn link to my slies: http://www.slideshare.net/LeeFeigenbaum/data-segmenting-in-anzo 15:41:35 I am curious to see RIF used as a 'rule language' as opposed to a 'rule interchange format' 15:41:42 s/Permantn/Permanent 15:41:54 ... triples are frames, will give an example later 15:42:22 ... here is the example 15:42:32 ... [see slides for the query] 15:42:50 ... it's a disjoint property written in owl 15:43:09 ... if you know rdf, it's easy to write 15:43:30 sandro: it's not the interchange format 15:43:36 ... it's a convenient syntax 15:43:47 davidwood, Arnaud, ashok, et al, proposals for breaks? strawman: http://www.w3.org/2011/09/LinkedData/Report 15:43:57 timbl: but these people wrote a parser for that 15:44:20 sandro: there is some history there, we chose XML and RDF for the exchange format 15:44:48 DS: problem: we don't have NOT 15:45:03 ... I mean not generic negation 15:45:09 ... but we needed it 15:45:32 ... sometimes, we can use built-in predicates 15:45:45 ... if rules are too complex, you need it 15:46:08 ... our solution: implement Not() with rif:error() 15:46:54 ... we anticipate there will be a profusion of zero argument predicate in the future 15:47:25 ericp, We should have a breakout regarding the definition of a minimal RDF/REST server. 15:47:46 sandro: rif:error is not part of RIF core 15:48:03 DS: but we use it a lot, we'll be happy to see it standardized 15:48:34 ... the rules have labels in documents, we see it in the output 15:48:52 ... so we can show you all the uris that triggered an error 15:49:10 ... there is no inference here 15:49:29 timbl: and there are tagged as strings? 15:49:31 ericp, ...and another breakout regarding pattern collection (I think). Let's poll immediately following David S's talk. 15:49:33 DS: not sure 15:49:43 sandro: this is addressed by RDF 1.1 15:50:06 DS: we have entailments as a bonus 15:50:23 cmatheus has joined #ledp 15:50:50 ... we don't use not() here 15:51:06 ... we do entailment before validation 15:51:19 RRSAgent, draft minutes 15:51:19 I have made the request to generate http://www.w3.org/2011/12/07-ledp-minutes.html betehess 15:51:54 ... you can try it out 15:52:01 ... download spyder, it's free 15:52:17 ... not currently open-source, but we're working on it (maybe next year) 15:52:30 ... spinner is the federated query engine 15:52:44 ... and Rex is the RIF-implementation 15:53:12 @@@: was told they would open-source it before semtech in June 15:53:18 ... not sure what that meant 15:53:39 ... looked on the Web right now, there is still a license agreement 15:54:14 ... so maybe there is a misunderstanding about free and open 15:54:26 DS: we want to make the source available 15:54:33 ... I don't know about the license 15:54:42 ... just want people to be able to use it 15:55:22 s/@@@: was/davidwood: was/ 15:55:37 davidwood: maybe it's just a communication issue 15:56:01 DS: there is code overlap between spyder and spinner 15:56:14 ... but you don't see it operationally 15:56:30 Sumalaika has joined #ledp 15:57:04 DS: we haven't implementation the sending of email from the rules yet 15:57:09 DS: thanks 15:57:17 RRSAgent, draft minutes 15:57:17 I have made the request to generate http://www.w3.org/2011/12/07-ledp-minutes.html betehess 15:57:33 davidwood: what will be the breakout sessions? 15:57:42 ... trying to do that before eric comes back 15:58:56 http://www.w3.org/2011/09/LinkedData/Report 15:59:04 davidschaengold has joined #ledp 15:59:08 RRSAgent, draft minutes 15:59:08 I have made the request to generate http://www.w3.org/2011/12/07-ledp-minutes.html betehess 15:59:31 Topic: Breakout discussions 15:59:35 [people trying to organize the breakout sessions] 16:00:37 i/by David Booth/scribenick: SteveBattle 16:00:43 rrsagent, draft minutes 16:00:43 I have made the request to generate http://www.w3.org/2011/12/07-ledp-minutes.html dbooth 16:02:16 i/EricP begins/Topic: Web Access Control 16:06:37 Martin: (1) LDEP Basic Profile / 101 Curriculum. Self-contained set. 16:08:08 -??P19 16:08:37 rrsagent, draft minutes 16:08:37 I have made the request to generate http://www.w3.org/2011/12/07-ledp-minutes.html dbooth 16:09:29 so topics (1) Missing specifications (2) Education (3) ROI 16:13:03 (A) Missing Specifications (B) Education and ROI 16:13:17 sandro: How about we each breakout makes a list of deliverables? 16:16:46 [trying to identity the deliverables a group would create] 16:17:14 timbl: I see 3 deliverables 16:17:24 ... spec of the basic profile 16:17:30 ... which is not best practice 16:17:49 ... then tutorial for developers new to this world 16:18:09 ... and a whiter paper for management 16:18:59 @elsevier@: the tutorial is a set of resources to get started 16:19:13 davidwood: it's already on the web 16:19:21 people: there are too many resources 16:19:59 @elsevier@: the thing is that you still have to make choice 16:20:22 ... it's different from providing a minimal profile to achieve something 16:20:58 ... we have big players in this room, that want to do linked data 16:21:20 ... we can reduce freedom to make easier to start 16:21:45 timbl: pagination is a feature part of the spec 16:22:36 here is the Linked Data Patterns text: linkeddatabook.com/ 16:22:40 http://linkeddatabook.com/ 16:22:50 Cornelia: profile is basically a subset of things that already exist. I see a Linked Data pattern spec being missing. trying to solve the identity for example 16:23:08 http://willyou.typewith.me/p/eldw 16:23:14 Arnaud: they are not always subsets 16:23:27 ... it can be about combining specs 16:23:34 ... I'm ok to choose another name 16:23:45 ... doesn't have to be totally new 16:23:47 ericP, http://willyou.typewith.me/p/eldw 16:23:52 ... it's more about putting things together 16:24:38 s/@elsevier@/brad/ 16:24:42 There are topics that come up over and over again in LD prpojects 16:24:51 They need specific attention 16:25:00 e.g., URL opqueness 16:25:09 Resource Identity 16:25:20 these topics need attention urgently 16:25:22 @@: depending on your community, you starting point is different 16:25:37 ... so we need to identify the enterprise developer we want to reach 16:25:58 ... for example, take the pet store from the jee community 16:26:15 timbl: I've got a worry 16:26:23 ... take anzo clients, they are all different 16:26:47 ... if it's too simple, people may think they can do it with only XML 16:27:30 ... dangerous to tell people how to do things if they come to the LD world 16:27:53 ... for example, sometime ETL are good in some situations, sometimes they are not adapted 16:28:34 @@: I agree, but we have to be specific 16:28:42 ... because we may not make any progress 16:28:49 ... maybe one example is not example 16:28:56 ... we need the courage to be specific 16:29:20 ... my sugegstions are: 16:29:24 No server is available to handle this request. 16:29:30 davidwood has joined #ledp 16:29:31 ... 1. describing the target, what they know, etc. 16:29:42 ... 2. get specific about examples 16:30:25 ... usecases can be expressed as examples 16:30:38 ericP: let see if we can identify some patterns 16:30:56 ... people see that outreach is a major issue 16:31:18 Arnaud: one of the problem is the lack of definition 16:31:23 ... could see that at IBM 16:31:24 Linked Data materials: 16:31:32 Linked Data: Evolving the Web into a Global Data Space By Tom Heath and Chris Bizer http://linkeddatabook.com/editions/1.0/ Linked Data Patterns Edited by Leigh Dodds and Ian Davis http://patterns.dataincubator.org/book/ Linking Enterprise Data (the entire book is on the Web) http://3roundstones.com/linking-enterprise-data/ The Joy of Data: A cookbook for publishing Linked Data on the Web By Bernadette Hyland Slides: 16:31:33 http://www.slideshare.net/bhylandwood/bernadette-hyland-semtech-2011-west-linked-data-cookbook Book chapter to be online shortly. Linked Data 101 http://3roundstones.com/linked-data-101/ Searching for "linked data tutorial" on Google brings up lots of developer-oriented materials. 16:31:33 ... can't point to one single document 16:32:02 ... we need an official standing, like spec, not just a note from timbl 16:32:12 ... would make a lot easier for people to understand 16:32:30 davidwood: that would just add one more resource on the Web 16:32:42 @@: it's not about creating more patterns 16:32:51 ... it's about identifying the important ones 16:33:05 ... I think there is core set we can identify 16:33:10 s/@@/Martin/ 16:33:29 ... as a basis to start in an enterprise context 16:33:42 Arnaud: martin we have at least 2 different communities 16:33:48 ... so maybe 2 different profiles? 16:33:55 ... that's why profiles are for 16:34:19 ... makes it very hard for us to communicate to clients 16:34:39 ... it will help putting names on these concepts 16:34:46 sandro: will tell a story here 16:34:57 ... some time ago, UK produces a bunch of data 16:35:14 ... first org I knew that just said: let's just try to do it 16:35:34 ... when they finished, the came to us, saying it had to be standardized 16:35:41 ... at that time, it was only govs 16:35:48 ... no enterprise were there! 16:35:50 http://www.w3.org/2011/gld/charter 16:36:08 ... the charter says things about best practices 16:36:13 ... including linked data system 16:36:18 ... so that people can point to it 16:36:25 ... it's sort a basic profile 16:36:33 ... next is about how to build vocabularies 16:36:41 ... then how to publish 16:37:16 Cornelia: and there is security too 16:37:33 sandro: just concerned that gov people had not participated to this workshop 16:37:51 ... sensing there is some energy here 16:38:04 ... so maybe we can recharter the other group 16:38:13 Arnaud: I looked at this charter before 16:38:34 ... but with the gov context 16:38:44 ... but maybe there is a significant overlap here 16:39:07 sandro: yes but it can make things more difficult, for example URIs construction 16:39:27 Arnaud: URIs creation can be very domain specific 16:40:18 sandro: lot of invited experts 16:40:26 ... due to structure of w3c 16:40:47 ... you find DERI, RPI, etc. 16:40:53 http://www.w3.org/2000/09/dbwg/details?group=47663&public=1 16:41:08 ... there are active people, but that's difficult 16:41:13 ... still a lot of work here 16:41:31 ... no FPWD yet 16:42:10 dbooth: there is clearly an overlap 16:42:26 ... I also had these goggles on when I looked at the charter 16:42:39 Cornelia: would help for education, outreach 16:43:10 ericP: there is opportunity for bringing other Members 16:43:43 davidwood: there are issues that don't happen with govs, like IP 16:44:04 ... will participants participate with such a charter 16:44:18 Cornelia: at least, I will press my legal department to participate 16:44:30 ... but there is definitely IP 16:44:56 sandro: but people can say that standards is more important for than IP :-) 16:45:13 Arnaud: don't commit for IBM, but I don't foresee any issue at this point 16:45:39 martin: my fear is that if it's out of scope 16:45:48 ... we came here with enterprise in mind 16:46:12 sandro: ibm, emc, oracle are gib players for govs as well 16:46:29 ... so enterprise data for you can be gov data for them 16:47:02 timbl: gov data is more about read, enterprise needs read/write 16:47:21 Arnaud: @sandro, as the group can't do everything, pratically, ,what are they doing? 16:47:36 sandro: dont really know, we have task force to tackle problems 16:48:20 s/task force to tackle problems/people who accepted each item/ 16:49:03 davidwood: we can write deliverables in the charter to make it more concrete 16:49:13 martin: yes, and I would add deadlines 16:49:40 ... that's why defining the kind of persona you want to reach 16:49:45 ... so that you can focus on 16:50:02 ericP: so, pet store could be too small 16:50:10 ... and may not provide enough details 16:50:23 ... so if you say you 1, 2, 3, ... 16:50:29 ... it can be much bigger 16:51:36 ashok: there is a CG about that 16:51:41 ... anyone knows about it? 16:51:46 people: we don't know it 16:52:16 s/about that/about networked data/ 16:52:16 http://www.w3.org/community/networked-data/ 16:52:44 +??P16 16:53:51 RRSAgent, please draft minutes 16:53:51 I have made the request to generate http://www.w3.org/2011/12/07-ledp-minutes.html betehess 16:53:57 -??P16 16:55:01 sandro: I'm a bit worried about Gov data group, because they have not made commitments yet 16:55:48 Government Linked Data Cookbook draft: http://www.w3.org/2011/gld/wiki/Linked_Data_Cookbook 16:56:03 sandro: there may be answers to most of the questions, but they have not shared them with the group yet 16:56:28 ericP: also, we may produce something that is not a charter, but close enough 16:56:42 ... so we start documenting work that IBM has done 16:56:48 ... can help see the overlap 16:57:10 sandro: can't build a community without a place to do that 16:57:15 ericP: mailing list? 16:57:36 timbl: we should try to find the content for the deliverable 16:57:42 ... what to we need to specify 16:58:07 ... making sure that some things are not messed up 16:58:15 ... like sparql update for example :-) 16:58:43 ... we had people speaking about collections, seems important 16:58:49 ... maybe webacls too? 16:59:56 Arnaud: liked how tim framed it earlier 17:00:10 ... that's a standard, a spec 17:00:14 ... speaks about compliance 17:00:21 "Linked Data Basic Platform" -- compliances 17:00:26 [break for lunch] 17:00:46 RRSAgent, create minutes 17:00:46 I have made the request to generate http://www.w3.org/2011/12/07-ledp-minutes.html betehess 17:14:17 sspeiche has joined #LEDP 17:19:17 davidwood has joined #ledp 17:20:56 mohawk has joined #ledp 17:49:44 ora has joined #ledp 17:52:30 ballen has joined #ledp 17:52:54 scribenick bheitman 17:53:31 scribenick: bheitman 17:54:02 Topic: Discussion of how to proceed 17:54:51 eris is bringing up the list of possible deliverables 17:55:10 eric of course 17:55:58 john: how is enterprise data distinct from linked open data ? 17:56:42 ericP: we will run into debates as the differences between enterprise and open data is not clear, and this could be about any kind of linked data 17:57:51 discussion about use cases for data which requires read / write data 17:58:53 timbl: for crowdsourced data, people need to change the data 17:59:28 ... governements have different problems with LD, enterprises have different ones again 18:00:01 timbl: a chain of data providers where one buys data from the previous is a very enterprise thing 18:00:38 ericP: the gov LD and the enterprise LD people can work together on the intersection 18:00:55 david booth: would it make sense to recharter the gov LD group ? 18:01:27 martin nally: we should not add a new thing to a dormant working group 18:02:22 arnaud le hors: we could take over that part of gov LD group 18:02:49 DavidWood: I strongly object to the assertion that the gov LD group is dead. 18:03:26 ericP goes through gov LD out of scope list. 18:03:42 ericP: almost everything in the out of scope list is in scope for us here 18:04:37 david wood: in an enterprise context you want to define e.g. a relationship to XML 18:05:12 TimBL: this new group would be about creating a core architecture 18:05:33 ... any client who conforms can use that system, you can build any kind of app on top 18:06:06 david wood: we need to define all the edges, how do you get to RDF ? 18:06:32 david booth: its too ambitious to require it to work with any client 18:06:49 TimBL: this is just about the spec, not the "on ramp" guide 18:06:54 console has joined #ledp 18:07:12 ... its about some turlte, some control onotology... (?) 18:07:24 ... a linked data basic plattform 18:07:49 s/any client/any app/ 18:08:03 sandro: similar to the w3c web app plattform name 18:08:44 ericP: are we moving towards a linked enterprise data charter ? who thinks this is wrong ? 18:08:59 sandro: this is about solving martin nally's use case 18:09:17 ... in an entirely standards-compliant manner 18:09:48 tim: With Access Control as an Optional deliverable. 18:09:50 timbl: we might not handle access controll in this charter,. 18:10:10 ... sometimes when people handle problem a, they realise they have enough for a spec for prob b as well 18:10:35 ericp: if we use martins story whch is very short, then this is a very doable task 18:10:57 martin nally: we are looking at a short term solution 18:11:16 ... this is about solving small problems to gain something in the short term 18:11:30 ... i would be nervous about being too ambitious 18:12:01 ashok: we should do this fairly quickly without a 4-5 year work group 18:12:19 ashok and ericp: lets do it in 6 months 18:12:38 david booth: what do you want to sacrifice for that ? 18:13:25 consensus about taking out a lot 18:13:37 davidwood has joined #ledp 18:14:43 arnaud le hors : dont try to solve everything, scope it so that the result is useful 18:14:45 (not consensus, I think) 18:15:05 sandro: sorry, was not sure how to document a quick discussion 18:15:31 arnaud le hors: the reminder can be part of the next version 18:15:38 "schedule-driven", "deadline-driven", "time-boxed" 18:16:12 timbl describes data.fm 18:16:54 timbl: we can use data.fm to describe test cases for read write data 18:17:30 http://data.fm/ 18:18:01 s/timbl: we can use data.fm to describe test cases for read write data/timbl: we can use data.fm as one example of a platform implementation/ 18:18:57 ericP: the list of topics for the ld platfotrm basic profile contains many entries which are output of other working groups 18:20:10 sandro: we could make an interest group which uses the expected specs as input. we could have a mailing list , maybe a few phone calls 18:20:49 discussion about writing a primer for linked enterprise data (?) 18:21:10 sandro: there is no list of what precisely describes linked data. there is no spec or primer (?) 18:21:26 martin nally: we need this kind of document 18:21:45 ericP: a primer could be sufficient 18:22:07 alexandre b.: a primer is not enough 18:22:07 sandro: What's needed is a definition of Linked Data, which is basically a list of specs needed. 18:22:43 ericP: is our time best spent writing a spec . or a primer which explores same use cases as IBM has already explored 18:22:57 arnaud le hors: you can claim compliance against a primer 18:23:09 member:arnaud le hors: you can *NOT claim compliance against a primer 18:23:12 Arnaud: You can't claim conformance with a Primer. 18:23:46 martin nally: we have about 5 tools in ibm rational, they work together because we made some choices together 18:24:02 ... others will make other choices, thats the problem 18:24:22 ericP: looks like we will need a test suite and such 18:24:58 david wood: why could you not claim compliance with a primer if it is a package of standards ? 18:25:55 arnaud le hors: what we are tallking about is about talking about a combination of standards 18:26:20 lee feigenbaum: too me its pretty clear that there is more then one way to use the standards, a spec would mean that there is a clear way. 18:26:54 bheitman: This sounds a lot like the AWWW. Defines high level concepts and how they work together. 18:27:12 http://www.w3.org/TR/webarch/ 18:27:46 http://www.w3.org/DesignIssues/ReadWriteLinkedData.html 18:27:49 timbl: Design issues docs ended up like a primer. 18:28:03 ... I've added questions that got asked. 18:28:37 timbl: this introduces new details. there is a little bit of spec in there, the rest is about how to test things 18:29:05 ... its nothing to which you can claim compliance too. there is just one test, you would need several thousand tests 18:29:48 ... profile means, saying which level of which standard to use together 18:29:58 PROPOSED: We want a Working Group to produce a W3C Recommendation which defines a Linked Data Platform -- something that solves IBM Rational's use case (presented yesterday). We expect this to be an enumeration of specs which constitute lnked data, with some small additional specs to cover things like pagination, if necessary. 18:30:34 s/lnked/linked/ 18:30:58 arnaud le hours seconds it 18:32:02 -0, because I question the need/desire for a WG, but agree with the deliverable. 18:32:35 john battle: make sure its about constructive use of specs 18:32:44 Could this instead be a Member Submission that could be subsequently blessed by W3? 18:32:50 s/john battle/SteveBattle/ 18:32:57 ora: sounds like a conglomeration of specs 18:33:13 s/john battle/steve battle/ 18:33:42 ora: I am not opposing this, I am just wondern what it means for the process 18:34:00 john wood: why do we need a seperate working group 18:34:43 arnaud le hors: making a submission is definitively on our agenda 18:34:50 s/john/david/ 18:34:52 s/john wood/david wood 18:35:26 ericP: many successfull working groups started as member submissions 18:35:59 sandro: it would be possible as a starting point to specifcy that the group can fall back on a working group 18:36:21 david booth: an interest group is an alternative 18:36:53 arnaud: what's your resistance to the WG, DavidW ? 18:37:15 I agree wholeheartedly with dwood 18:37:17 david wood: there is a lot of time spent unproductively in a working group 18:37:22 davidwood: They spend a lot of time. The process, the sociology, .... 18:38:12 ... there might be a possibility for parts of the deliverable to be made by different existing groups 18:38:28 arnaud le hors: should the deliverable be hosted by an existing working group or by a new one ? 18:38:35 davidw: I support it being a Rec, but not necessarily a new group. 18:38:41 david wood: we should use the w3c process in a lighter way 18:39:03 david booth: I am not convinced that it needs this level 18:39:18 ballen has joined #ledp 18:39:33 ericP: we need tests. 18:39:35 my take is that the Recommendation is the only way to have a strong enough voice to exist within the Semantic Web ecosystem 18:40:04 ericP: if we want the recommendation because we want tests, then we can write the tests independently 18:40:47 martin nally: we can not get serious traction of this tech in ibm if it is not a standard 18:41:11 martin: The reality is we'll never really convert even other parts of IBM without this being a standards. A Note or Best Practice or whatever is not enough. 18:41:28 Fair enough. 18:42:12 timbl: the working group chartering process has a lot of flexibility, so e.g. face to face meetings are optional 18:42:37 .. you cant have a member submission but do it behind closed doors 18:43:57 david wood: i like the idea of a meta spec 18:45:13 RESOLVED: We want a Working Group to produce a W3C Recommendation which defines a Linked Data Platform -- something that solves IBM Rational's use case (presented yesterday). We expect this to be an enumeration of specs which constitute linked data, with some small additional specs to cover things like pagination, if necessary. 18:45:16 (no objections) 18:45:37 (obviously lots of people could word-smith that phrasing.) 18:45:59 ericP: it looks like we have enough resources 18:47:05 arnaud le hors: IBM can not work for something 6 months before submitting it as a spec (?) 18:47:18 s/can not/should not/ 18:47:27 http://www.ibm.com/developerworks/rational/library/basic-profile-linked-data/index.html 18:48:04 ... we should not work behind closed doors on this 18:48:32 scribenick: Cornelia 18:48:38 Nally has joined #ledp 18:48:45 Which is an updated version of what we have done(learned) by work done in public at http://open-services.net/wiki 18:48:58 sandro: Use a community group to create the member submission? 18:49:22 note you don't need a member submission if you have a community group. But you can set up those groups very quickly and easily for initial exploration. 18:49:33 Timbl: what about submitting something very close to what IBM already has, right away? 18:50:21 sandro: use the community group to allow inclusion on the member submission 18:51:08 ashok: It takes a long time for the lawyers of places like Oracle to bless employees to join even community groups 18:51:14 saved copy of pad: http://www.w3.org/2011/12/07-ledp-pad.txt 18:51:30 ericP: Not everyone offering advice must be a member of the community group 18:52:17 arnaud: I'm not against community groups but I don't want to be sidetracked by that. I don't want it to delay the formation of the working group 18:52:41 ericP: the community group will want editorial control 18:53:54 arnaud: Suggest taking current document, allow others to sign on in support, and make that a member submission as is. 18:54:09 sandro: What about overlap with other standards? 18:54:48 ... i.e. REST and SPARQL - do we have them stop this and we take it on or let them do a 1.0? 18:55:12 EricP: Do we have any evidence that what they are doing here isn't what we would want? 18:55:24 sandro: yes. PATCH 18:55:45 Timbl: The PATCH paragraph is informational and loaded with SHOULDs 18:55:45 http://www.w3.org/2009/sparql/docs/http-rdf-update/#http-patch 18:56:40 LeeF: no one in the working group uses PATCH 18:57:06 EricP: I am hearing that there are people who use PATCH 18:58:09 http://www.w3.org/TR/sparql11-http-rdf-update/ 18:58:40 Martin: the way that I read the spec: "If you know RDF, etc. and want to expose resources, do REST, here's how you do it" 18:58:48 LEE, want to paste the Ed's Draft, too? 18:59:11 ... my people are not coming from that "graph store" perspective. They know resources, not "named graphs" 18:59:48 ... people coming from different planets 19:00:59 this is basically what I'll *need* to specify anyway for the Validator Suite project, as it will rely on all that stuff: http://www.w3.org/2011/12/07-linked-data-betehess.txt 19:01:25 editor's draft of Graph Store Protocol - http://www.w3.org/2009/sparql/docs/http-rdf-update/ 19:01:45 MS-Authpr-Via 19:02:14 timbl: discussion around ms-author-via header and how it can be used to detect that something is editable 19:02:51 ... but this pattern isn't written up anywhere 19:03:31 ... discussion around a spec that mostly references other specs. 19:04:06 timbl: 19:04:25 ... there have been a lot of things that have not been written because they are too small. 19:04:51 ... but if you just defined that one predicate (for example) there are a huge number of things you can do as a result 19:05:29 19:06:07 EricP: I think we are arguing about the editorial nature of a spec. 19:06:53 sandro: I want to come back to the question of whether SPARQL REST should be moved from the current working group 19:07:44 davidwood: I'm a bit concerned about this workshop resulting in taking something away from the core SPARQL WG 19:08:04 sandro: The REST part is arguably not core 19:08:11 public-rdf-dawg-comments@w3.org 19:08:25 http://www.w3.org/2009/sparql/docs/http-rdf-update/#http-patch 19:08:40 davidwood ^ 19:08:48 timbl: Can someone from SPARQL working group ... do what?... 19:08:59 yes - LeeF 19:10:33 EricP: SPARQL endpoint vs. Web resource 19:11:58 sandro: Doing a RESTful interface over a graph takes some work 19:12:19 timbl: disjoint from the read/write web 19:12:43 martin: I don't want to tell every web programmer at IBM that their resources are graphs. 19:12:57 timbl: We will talk about web abstractions, not graphs 19:13:51 sandro: When do we try to work through this SPARQL/web resource issue? Before the WG? 19:14:04 I took an action to make a public comment to the SPARQL WG regarding the lack of PATCH support in IE's XMLHttpRequest object. 19:15:07 sandro: This work group must have input into SPARQL HTTP spec 19:15:41 martin: it seems odd that the spec assumes an RDF store - it's an implementation detail. 19:16:20 timbl: All of the SPARQL implementations operate against an RDF store 19:18:39 Arnaud: Might make sense to have what timbl suggests - that this WG write their version of the spec 19:19:00 sandro: with the same test suite across the two groups 19:19:21 I'm highly suspicious of what seems to be an underlying assumption here that standards get widespread adoption from popularly-accessible specs, rather than from copying working examples, working code, and educational materials 19:20:02 EricP: I have some outstanding issues here 19:20:25 ... are we poking our fingers into SPARQL's affairs 19:20:30 Sent email to public-RDF-dawg-comments@w3.org re IE's lack of PATCH support in its XMLHttpRequest object. 19:20:50 ... a r/w interface that is web oriented 19:20:54 LeeF, ^ 19:21:07 thanks, davidwood 19:21:55 http://www.w3.org/wiki/EditingData 19:22:39 Arnaud: There is a document already out there and I invite comments but I don't want to spend a lot of time preparing the member submission. 19:22:59 ... there will be authors and co-submitters. 19:23:02 http://www.w3.org/community/rww/ 19:23:15 http://www.w3.org/wiki/WebAccessControl 19:23:32 ... goal to have member submission in Jan 2012 19:24:57 davidwood: when I look at the open-services.org I see lots of gaps 19:25:33 Cornelia: this is not what is proposed as a member submission. The developer works article is. 19:26:02 A proposal started by IBM http://www.ibm.com/developerworks/rational/library/basic-profile-linked-data/index.html 19:26:22 Discussion on the way to collaboratively edit... 19:26:41 googledocs, W3C Wiki, word doc? 19:27:15 timbl: we can put the docs in a database and use the w/r web to post updates 19:27:29 davidwood: I would rather use w3 infrastructure. 19:27:40 timbl: would then have a history in cvs 19:28:02 Arnaud: Davidwood has a good point. How do we move forward 19:28:23 ... next step: Have a look at the dev works article and provide comments 19:28:40 davidwood has joined #ledp 19:28:55 sspeiche: and also indicate the level of engagement you would have. 19:29:09 sandro: I can create a mailing list. 19:29:29 Arnaud: maybe not public yet? 19:30:35 timbl: I think you want to make it public because there are likely a lot of interested parties outside of this group. 19:32:13 Arnaud: concerned that too large a forum might delay getting the member submission in. 19:33:59 Arnaud: Let's not over engineer the process of providing the member submission 19:34:32 sandro: r/w web is only 10% of the problem in linked data 19:34:41 timbl: pagination 19:34:50 sandro: validation 19:35:14 The above are other parts of the problem. 19:36:04 Arnaud: the working group needs to decide these things. Not prior to the working group formation. 19:36:31 davidwood: the more immediate concern is getting a good member submission. 19:36:54 sandro: The charter is a bigger problem. Need community consensus 19:37:12 davidwood: Agree that we need to engage the existing linked data community 19:37:19 ... how do we do that? 19:38:00 sandro: In ... we did a survey, ... 19:38:30 sandro: for the RDF 1.1 WG we did a survey before the charter 19:38:47 davidwood: the charter needs to be shopped 1-1 to the enterprises. 19:39:16 timbl: Suggest sandro could publish the current draft charter relatively immediately. 19:39:43 ballen has joined #ledp 19:39:51 sandro: someone needs to talk to Microsoft and various other players to see if they would come on board. 19:40:05 Arnaud: How are charters created these days? 19:40:17 sandro: I do them in public 19:40:45 dbooth: Do you mean public or member? 19:40:49 sandro: public 19:41:56 Cornelia: why are we calling out MSFT in particular? 19:42:41 What about Google? 19:42:51 davidwood: they are big, browser vendor, ... 19:43:09 Others 19:43:13 ... Amazon? 19:43:41 davidwood: some are in the room. IBM, Oracle, EMC,... 19:43:41 who else should be in the group, maybe...? 19:44:00 Arnaud: What do we need to produce for this workshop? 19:44:16 How about the people actually doing enterprise semantic web? e.g. topquadrant? or is enterprise semantic web disjoint from enterprise linked data? 19:44:32 EricP: This decision, the formation of the WG and the member submission, are the most significant. 19:44:44 ... everyone please give me your slides. 19:44:52 ora has joined #ledp 19:45:25 LeeF, certainly we should discuss it with them. 19:45:45 Eric's email: eric@w3.org 19:46:08 EricP: Resolution 19:46:16 ... IBM hold keys to member submission 19:46:35 lehors@us.ibm.com 19:46:36 ... people will contact Arnaud to indicate interest in participating in this. 19:47:58 Arnaud: We will keep the member submission process lean. This is just the starting point. 19:49:00 Arnaud, what's the ETA for the IBM's Member Submission? 19:49:13 sandro: Many people in the room have remained silent on this. Any concerns? 19:49:34 There were none voiced. 19:49:49 EricP: Sandro to own the charter 19:50:01 sandro: modulo w3c staffing issues. 19:50:37 ?: If we are not creating a mailing list then were do we communicate? 19:50:56 sandro: I will create a mailing list for charter discussions. 19:51:22 sandro, I will be working on this stuff anyway because of the W3C Validator Suite 19:51:56 EricP: Where do we have technical discussions? 19:52:16 ... or do we want to have those direct with Arnaud? 19:52:41 timbl: TOC for the spec could happen on this new mailing list. 19:52:52 public-ldp@w3.org created. http://lists.w3.org/Archives/Public/public-ldp/ 19:53:25 ... actually solving technical problems maybe on an interest group list 19:53:44 sandro: suggest having those discussion on the new list 19:53:58 davidwood: with alerts to the interest group lists. 19:54:06 public-ldp-request@w3.org 19:55:52 davidwood: Details on who wants to be or should be on the member submission? 19:56:31 Arnaud: interested in having others there. Said (from EMC) expressed an interest earlier. Nokia says they are interested. 19:56:51 davidwood: 3 round stones are interested (albiet a small company) 19:57:03 revelitix also interested. 19:57:20 Oracle, too 19:58:03 Arnaud: Is there anything else, beyond the formation of the WG, that this workshop would like to recommend? 19:58:16 timbl: such as tutorials, etc. 20:00:40 sandro: primers for different audiences, i.e. gov, enterprise, EU gov, ... maybe? 20:00:57 ... there are others who can write those (other than W3C) 20:01:22 sandro: Other things? 20:01:40 Cornelia: ROI for selling the concept in the enterprise 20:01:52 timbl: As case studies 20:02:19 ryan: We need hard facts in those. 20:02:47 timbl: NASA use case 20:03:45 sandro: this and others had the form - we tried x at cost(x) and failed then did RDF and succeeded 20:04:07 ora: we have a lot of qualitative data but little quantitative 20:05:00 davidwood: 60% of the cost of a product is in maintenance and some large percentage of that is in assessment 20:05:15 ... can Elsivier provide such numbers? 20:05:33 Brad: Have to think about that. 20:06:00 davidwood: there are other people I can go to and ask 20:06:17 sandro: Who is going to write this up and publish it? 20:06:28 timbl: Talk to Ivan 20:07:27 sandro: davidwood will gather case studies. Only those without proprietary information 20:07:41 davidwood: Only those without proprietary information 20:09:10 davidwood: Usecases, casestudies already up for collection 20:09:33 ... add ROI information as something to collect 20:09:44 http://www.w3.org/2001/sw/sweo/public/UseCases/ 20:10:18 sandro: I'd like to have this group review these case studies, use cases, ROIs 20:11:02 timbl: suggest ian jacobs to do interview 20:12:23 timbl: the list of workshop participants should be distributed. Any objections? 20:13:05 davidwood: chairs will send out pointer to minutes, contact list, appropriate mailing list, etc. 20:14:32 Meeting is adjourned 20:14:55 RRSAgent, generate minutes 20:14:55 I have made the request to generate http://www.w3.org/2011/12/07-ledp-minutes.html betehess 20:15:39 Sumalaika has joined #ledp 20:35:35 davidwood has joined #ledp 20:36:23 Arnaud has joined #ledp 20:38:25 Cornelia has joined #ledp 20:47:29 LeeF has joined #ledp 20:53:39 timbl has joined #ledp 20:54:07 http://en.wikipedia.org/wiki/Stream_processing#Stream_Programming_Languages 20:55:41 dbooth has joined #ledp 21:45:09 mcdonoug has joined #ledp 22:16:06 rrsagent, draft minutes 22:16:06 I have made the request to generate http://www.w3.org/2011/12/07-ledp-minutes.html dbooth 22:18:17 ora has joined #ledp 22:35:00 disconnecting the lone participant, [MIT-G449], in SW_(LEDP)7:30AM 22:35:02 SW_(LEDP)7:30AM has ended 22:35:04 Attendees were [MIT-G449], Ralph 23:09:03 sspeiche has joined #LEDP 23:11:54 sspeiche has left #LEDP