Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- create customer
- localhost:3000/api/v1/rdf/nodes/customers
- {
- "customer": {
- "customer_uuid": 9000
- }
- }
- create contract
- localhost:3000/api/v1/rdf/nodes/contracts
- {
- "contract": {
- "customer_uuid": 9000,
- "uuid": 9000
- }
- }
- create workflow_request_template
- localhost:3000/api/v1/rdf/nodes/workflow_request_templates
- {
- "workflow_request_template": {
- "customer_uuid": 9000,
- "uuid": 9000
- }
- }
- create workflow_request
- localhost:3000/api/v1/rdf/nodes/workflow_requests
- {
- "workflow_request": {
- "workflow_request_template_uuid": 9000,
- "contract_uuid": 9000,
- "uuid": 9000
- }
- }
- create ontology
- localhost:3000/api/v1/rdf/primitives/ontologies
- {
- "primitive": {
- "customer_uuid": "9000",
- "subclass_name": "Number",
- "label": "Metros Cubicos",
- "comment": "prueba number"
- }
- }
- customer ontologies
- http://localhost:3000/api/v1/rdf/primitives/ontologies?customer_uuid=9000
- show ontology
- http://localhost:3000/api/v1/rdf/primitives/ontologies/Metadatum-fdbf3711-d962-44d7-a4bc-eb0c4cfb0ddb?customer_uuid=9000
- remove ontology
- DELETE
- localhost:3000/api/v1/rdf/primitives/ontologies/Metadatum-cacaa7ef-abf9-4351-804a-58c9c4cd3d5a
- create instance
- localhost:3000/api/v1/rdf/primitives/instances
- {
- "instance": {
- "workflow_request_uuid": 9000,
- "customer_uuid": 9000,
- "class_name": "Metadatum-7a2d30f2-0d85-408b-a236-fee8ce6ae46d",
- "value": "600"
- }
- }
- customer instances workflow_request
- http://localhost:3000/api/v1/rdf/primitives/instances?customer_uuid=9000&workflow_request_uuid=9000
- show instance
- http://localhost:3000/api/v1/rdf/primitives/instances/Metadatum-a3c24003-e837-4de7-9bab-9920cf478150-a869a55c-779e-4269-b467-900ce535c74d
- remove instance
- DELETE
- http://localhost:3000/api/v1/rdf/primitives/instances?customer_uuid=666&workflow_request_uuid=666
Advertisement
Add Comment
Please, Sign In to add comment